|
| 1 | +--- |
| 2 | + |
| 3 | +# typically overridden by environmental |
| 4 | +# values, but should include all endpoints |
| 5 | +# required by this chart |
| 6 | +endpoints: |
| 7 | + oslo_messaging: |
| 8 | + statefulset: |
| 9 | + replicas: 3 |
| 10 | + name: rabbitmq-server |
| 11 | + hosts: |
| 12 | + default: rabbitmq-nodes |
| 13 | + load_balancer: |
| 14 | + port: |
| 15 | + api: |
| 16 | + public: 443 |
| 17 | + scheme: |
| 18 | + public: https |
| 19 | + host_fqdn_override: |
| 20 | + public: |
| 21 | + tls: |
| 22 | + secretName: octavia-tls-public |
| 23 | + issuerRef: |
| 24 | + name: understack-cluster-issuer |
| 25 | + kind: ClusterIssuer |
| 26 | + |
| 27 | +network: |
| 28 | + # configure OpenStack Helm to use Undercloud's ingress |
| 29 | + # instead of expecting the ingress controller provided |
| 30 | + # by OpenStack Helm |
| 31 | + use_external_ingress_controller: true |
| 32 | + api: |
| 33 | + ingress: |
| 34 | + annotations: |
| 35 | + nginx.ingress.kubernetes.io/rewrite-target: / |
| 36 | + # set our default issuer |
| 37 | + cert-manager.io/cluster-issuer: understack-cluster-issuer |
| 38 | + external_policy_local: false |
| 39 | + node_port: |
| 40 | + enabled: false |
| 41 | + |
| 42 | +conf: |
| 43 | + octavia: |
| 44 | + api_settings: |
| 45 | + enabled_provider_drivers: >- |
| 46 | + ovn: "The Octavia OVN driver", |
| 47 | + default_provider_driver: ovn |
| 48 | + driver_agent: |
| 49 | + enabled_provider_agents: ovn |
| 50 | + ovn: |
| 51 | + ovn_nb_connection: tcp:ovn-ovsdb-nb.openstack.svc.cluster.local:6641 |
| 52 | + ovn_sb_connection: tcp:ovn-ovsdb-sb.openstack.svc.cluster.local:6642 |
| 53 | + |
| 54 | +dependencies: |
| 55 | + dynamic: |
| 56 | + common: |
| 57 | + local_image_registry: |
| 58 | + jobs: null |
| 59 | + static: |
| 60 | + api: |
| 61 | + jobs: |
| 62 | + - octavia-db-sync |
| 63 | + - octavia-ks-user |
| 64 | + - octavia-ks-endpoints |
| 65 | + worker: |
| 66 | + jobs: |
| 67 | + - octavia-db-sync |
| 68 | + - octavia-ks-user |
| 69 | + - octavia-ks-endpoints |
| 70 | + housekeeping: |
| 71 | + jobs: |
| 72 | + - octavia-db-sync |
| 73 | + - octavia-ks-user |
| 74 | + - octavia-ks-endpoints |
| 75 | + health_manager: |
| 76 | + jobs: |
| 77 | + - octavia-db-sync |
| 78 | + - octavia-ks-user |
| 79 | + - octavia-ks-endpoints |
| 80 | + db_sync: |
| 81 | + jobs: |
| 82 | + |
| 83 | +manifests: |
| 84 | + job_db_init: false |
| 85 | + job_rabbit_init: false |
| 86 | + pod_rally_test: false |
| 87 | + secret_db: true |
| 88 | + secret_keystone: true |
| 89 | + service_ingress_api: false |
| 90 | + |
| 91 | +# we don't want to enable OpenStack Helm's |
| 92 | +# helm.sh/hooks because they set them as |
| 93 | +# post-install,post-upgrade which in ArgoCD |
| 94 | +# maps to PostSync. However the deployments |
| 95 | +# and statefulsets in OpenStack Helm |
| 96 | +# depend on the jobs to complete to become |
| 97 | +# healthy. Which they cannot because they are in |
| 98 | +# the post step and not in the main step. |
| 99 | +# Turning this on results in the keys jobs |
| 100 | +# editing the annotation which deletes the item |
| 101 | +# and wipes our keys. |
| 102 | +helm3_hook: false |
| 103 | + |
| 104 | +annotations: |
| 105 | + job: |
| 106 | + octavia_db_sync: |
| 107 | + argocd.argoproj.io/hook: Sync |
| 108 | + argocd.argoproj.io/hook-delete-policy: BeforeHookCreation |
| 109 | + argocd.argoproj.io/sync-options: Replace=true |
| 110 | + octavia_ks_service: |
| 111 | + argocd.argoproj.io/hook: Sync |
| 112 | + argocd.argoproj.io/hook-delete-policy: BeforeHookCreation |
| 113 | + argocd.argoproj.io/sync-options: Replace=true |
| 114 | + octavia_ks_user: |
| 115 | + argocd.argoproj.io/hook: Sync |
| 116 | + argocd.argoproj.io/hook-delete-policy: BeforeHookCreation |
| 117 | + argocd.argoproj.io/sync-options: Replace=true |
| 118 | + octavia_ks_endpoints: |
| 119 | + argocd.argoproj.io/hook: Sync |
| 120 | + argocd.argoproj.io/hook-delete-policy: BeforeHookCreation |
| 121 | + argocd.argoproj.io/sync-options: Replace=true |
| 122 | + octavia_bootstrap: |
| 123 | + argocd.argoproj.io/hook: Sync |
| 124 | + argocd.argoproj.io/hook-delete-policy: BeforeHookCreation |
| 125 | + argocd.argoproj.io/sync-options: Replace=true |
0 commit comments