chore: initial ovn commit
diff --git a/roles/ovn/README.md b/roles/ovn/README.md
new file mode 100644
index 0000000..b38bf8d
--- /dev/null
+++ b/roles/ovn/README.md
@@ -0,0 +1 @@
+# `ovn`
diff --git a/roles/ovn/defaults/main.yml b/roles/ovn/defaults/main.yml
new file mode 100644
index 0000000..b904598
--- /dev/null
+++ b/roles/ovn/defaults/main.yml
@@ -0,0 +1,20 @@
+# Copyright (c) 2023 VEXXHOST, Inc.
+#
+# Licensed under the Apache License, Version 2.0 (the "License"); you may
+# not use this file except in compliance with the License. You may obtain
+# a copy of the License at
+#
+# http://www.apache.org/licenses/LICENSE-2.0
+#
+# Unless required by applicable law or agreed to in writing, software
+# distributed under the License is distributed on an "AS IS" BASIS, WITHOUT
+# WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the
+# License for the specific language governing permissions and limitations
+# under the License.
+
+ovn_helm_release_name: ovn
+ovn_helm_chart_path: "../../charts/ovn/"
+ovn_helm_chart_ref: /usr/local/src/ovn
+
+ovn_helm_release_namespace: openstack
+ovn_helm_values: {}
diff --git a/roles/ovn/meta/main.yml b/roles/ovn/meta/main.yml
new file mode 100644
index 0000000..7141b0f
--- /dev/null
+++ b/roles/ovn/meta/main.yml
@@ -0,0 +1,32 @@
+# Copyright (c) 2023 VEXXHOST, Inc.
+#
+# Licensed under the Apache License, Version 2.0 (the "License"); you may
+# not use this file except in compliance with the License. You may obtain
+# a copy of the License at
+#
+# http://www.apache.org/licenses/LICENSE-2.0
+#
+# Unless required by applicable law or agreed to in writing, software
+# distributed under the License is distributed on an "AS IS" BASIS, WITHOUT
+# WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the
+# License for the specific language governing permissions and limitations
+# under the License.
+
+galaxy_info:
+ author: VEXXHOST, Inc.
+ description: Ansible role for OVN
+ license: Apache-2.0
+ min_ansible_version: 5.5.0
+ standalone: false
+ platforms:
+ - name: Ubuntu
+ versions:
+ - focal
+ - jammy
+
+dependencies:
+ - role: defaults
+ - role: vexxhost.kubernetes.upload_helm_chart
+ vars:
+ upload_helm_chart_src: "{{ ovn_helm_chart_path }}"
+ upload_helm_chart_dest: "{{ ovn_helm_chart_ref }}"
diff --git a/roles/ovn/tasks/main.yml b/roles/ovn/tasks/main.yml
new file mode 100644
index 0000000..307c50e
--- /dev/null
+++ b/roles/ovn/tasks/main.yml
@@ -0,0 +1,23 @@
+# Copyright (c) 2023 VEXXHOST, Inc.
+#
+# Licensed under the Apache License, Version 2.0 (the "License"); you may
+# not use this file except in compliance with the License. You may obtain
+# a copy of the License at
+#
+# http://www.apache.org/licenses/LICENSE-2.0
+#
+# Unless required by applicable law or agreed to in writing, software
+# distributed under the License is distributed on an "AS IS" BASIS, WITHOUT
+# WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the
+# License for the specific language governing permissions and limitations
+# under the License.
+
+- name: Deploy Helm chart
+ run_once: true
+ kubernetes.core.helm:
+ name: "{{ ovn_helm_release_name }}"
+ chart_ref: "{{ ovn_helm_chart_ref }}"
+ release_namespace: "{{ ovn_helm_release_namespace }}"
+ create_namespace: true
+ kubeconfig: /etc/kubernetes/admin.conf
+ values: "{{ _ovn_helm_values | combine(ovn_helm_values, recursive=True) }}"
diff --git a/roles/ovn/vars/main.yml b/roles/ovn/vars/main.yml
new file mode 100644
index 0000000..59d9c20
--- /dev/null
+++ b/roles/ovn/vars/main.yml
@@ -0,0 +1,37 @@
+# Copyright (c) 2023 VEXXHOST, Inc.
+#
+# Licensed under the Apache License, Version 2.0 (the "License"); you may
+# not use this file except in compliance with the License. You may obtain
+# a copy of the License at
+#
+# http://www.apache.org/licenses/LICENSE-2.0
+#
+# Unless required by applicable law or agreed to in writing, software
+# distributed under the License is distributed on an "AS IS" BASIS, WITHOUT
+# WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the
+# License for the specific language governing permissions and limitations
+# under the License.
+
+_ovn_helm_values:
+ images:
+ tags: "{{ atmosphere_images | vexxhost.atmosphere.openstack_helm_image_tags('ovn') }}"
+ labels:
+ ovn_ovsdb_nb:
+ node_selector_key: openstack-control-plane
+ node_selector_value: enabled
+ ovn_ovsdb_sb:
+ node_selector_key: openstack-control-plane
+ node_selector_value: enabled
+ ovn_northd:
+ node_selector_key: openstack-control-plane
+ node_selector_value: enabled
+ volume:
+ ovn_ovsdb_nb:
+ size: 20Gi
+ ovn_ovsdb_sb:
+ size: 20Gi
+ pod:
+ replicas:
+ ovn_ovsdb_nb: 3
+ ovn_ovsdb_sb: 3
+ ovn_northd: 3