|
| 1 | +--- |
| 2 | +release_group: null |
| 3 | + |
| 4 | +conf: |
| 5 | + backends: |
| 6 | + # disable the hardcoded one in the OpenStack Helm values.yaml |
| 7 | + rbd1: null |
| 8 | + |
| 9 | +# typically overridden by environmental |
| 10 | +# values, but should include all endpoints |
| 11 | +# required by this chart |
| 12 | +endpoints: |
| 13 | + oslo_messaging: |
| 14 | + statefulset: |
| 15 | + replicas: 3 |
| 16 | + name: rabbitmq-server |
| 17 | + hosts: |
| 18 | + default: rabbitmq-nodes |
| 19 | + volumev3: |
| 20 | + port: |
| 21 | + api: |
| 22 | + public: 443 |
| 23 | + scheme: |
| 24 | + public: https |
| 25 | + path: |
| 26 | + # since the Yoga release it is not necessary to include the tenant_id |
| 27 | + # in the URL |
| 28 | + default: '/v3' |
| 29 | + host_fqdn_override: |
| 30 | + public: |
| 31 | + tls: |
| 32 | + secretName: cinder-tls-public |
| 33 | + issuerRef: |
| 34 | + name: understack-cluster-issuer |
| 35 | + kind: ClusterIssuer |
| 36 | + |
| 37 | + |
| 38 | +network: |
| 39 | + # configure OpenStack Helm to use Undercloud's ingress |
| 40 | + # instead of expecting the ingress controller provided |
| 41 | + # by OpenStack Helm |
| 42 | + use_external_ingress_controller: true |
| 43 | + api: |
| 44 | + ingress: |
| 45 | + annotations: |
| 46 | + nginx.ingress.kubernetes.io/rewrite-target: / |
| 47 | + # set our default issuer |
| 48 | + cert-manager.io/cluster-issuer: understack-cluster-issuer |
| 49 | + |
| 50 | +pod: |
| 51 | + mounts: |
| 52 | + cinder_volume: |
| 53 | + cinder_volume: |
| 54 | + # necessary because the netapp driver requires this for scratch space |
| 55 | + # and even makes sure its writeable a better approach should go upstream |
| 56 | + volumeMounts: |
| 57 | + - mountPath: /var/lib/cinder |
| 58 | + name: var-lib-cinder |
| 59 | + volumes: |
| 60 | + - name: var-lib-cinder |
| 61 | + emptyDir: {} |
| 62 | + lifecycle: |
| 63 | + disruption_budget: |
| 64 | + deployments: |
| 65 | + # this should be set to no more than (pod.replicas.server - 1) |
| 66 | + # usually set on per-deployment basis. |
| 67 | + min_available: 0 |
| 68 | +dependencies: |
| 69 | + dynamic: |
| 70 | + common: |
| 71 | + local_image_registry: |
| 72 | + jobs: null |
| 73 | + static: |
| 74 | + api: |
| 75 | + jobs: |
| 76 | + - cinder-db-sync |
| 77 | + - cinder-ks-user |
| 78 | + - cinder-ks-endpoints |
| 79 | + services: |
| 80 | + - endpoint: internal |
| 81 | + service: oslo_db |
| 82 | + - endpoint: internal |
| 83 | + service: identity |
| 84 | + db_sync: |
| 85 | + jobs: |
| 86 | + backup: |
| 87 | + jobs: |
| 88 | + - cinder-db-sync |
| 89 | + - cinder-ks-user |
| 90 | + - cinder-ks-endpoints |
| 91 | + db_purge: |
| 92 | + jobs: |
| 93 | + - cinder-db-sync |
| 94 | + - cinder-ks-user |
| 95 | + - cinder-ks-endpoints |
| 96 | + scheduler: |
| 97 | + jobs: |
| 98 | + - cinder-db-sync |
| 99 | + - cinder-ks-user |
| 100 | + - cinder-ks-endpoints |
| 101 | + volume: |
| 102 | + jobs: |
| 103 | + - cinder-db-sync |
| 104 | + - cinder-ks-user |
| 105 | + - cinder-ks-endpoints |
| 106 | + volume_usage_audit: |
| 107 | + jobs: |
| 108 | + - cinder-db-sync |
| 109 | + - cinder-ks-user |
| 110 | + - cinder-ks-endpoints |
| 111 | + |
| 112 | +manifests: |
| 113 | + secret_keystone: true |
| 114 | + job_backup_storage_init: false |
| 115 | + job_bootstrap: false |
| 116 | + job_db_init: false |
| 117 | + job_db_drop: false |
| 118 | + job_rabbit_init: false |
| 119 | + job_storage_init: false |
| 120 | + pod_rally_test: false |
| 121 | + secret_db: false |
| 122 | + secret_ingress_tls: false |
| 123 | + secret_rabbitmq: false |
| 124 | + secret_registry: false |
| 125 | + service_ingress_api: false |
| 126 | + deployment_backup: false |
| 127 | + |
| 128 | +# We don't want to enable OpenStack Helm's |
| 129 | +# helm.sh/hooks because they set them as |
| 130 | +# post-install,post-upgrade which in ArgoCD |
| 131 | +# maps to PostSync. However the deployments |
| 132 | +# and statefulsets in OpenStack Helm |
| 133 | +# depend on the jobs to complete to become |
| 134 | +# healthy. Which they cannot because they are in |
| 135 | +# the post step and not in the main step. |
| 136 | +# Turning this on results in the keys jobs |
| 137 | +# editing the annotation which deletes the item |
| 138 | +# and wipes our keys. |
| 139 | +helm3_hook: false |
| 140 | + |
| 141 | +annotations: |
| 142 | + job: |
| 143 | + cinder_db_sync: |
| 144 | + argocd.argoproj.io/hook: Sync |
| 145 | + argocd.argoproj.io/hook-delete-policy: BeforeHookCreation |
| 146 | + cinder_ks_service: |
| 147 | + argocd.argoproj.io/hook: Sync |
| 148 | + argocd.argoproj.io/hook-delete-policy: BeforeHookCreation |
| 149 | + cinder_ks_user: |
| 150 | + argocd.argoproj.io/hook: Sync |
| 151 | + argocd.argoproj.io/hook-delete-policy: BeforeHookCreation |
| 152 | + cinder_ks_endpoints: |
| 153 | + argocd.argoproj.io/hook: Sync |
| 154 | + argocd.argoproj.io/hook-delete-policy: BeforeHookCreation |
| 155 | + cinder_image_repo_sync: |
| 156 | + argocd.argoproj.io/hook: Sync |
| 157 | + argocd.argoproj.io/hook-delete-policy: BeforeHookCreation |
| 158 | + cinder_clean: |
| 159 | + argocd.argoproj.io/hook: Sync |
| 160 | + argocd.argoproj.io/hook-delete-policy: BeforeHookCreation |
| 161 | + cinder_create_internal_tenant: |
| 162 | + argocd.argoproj.io/hook: Sync |
| 163 | + argocd.argoproj.io/hook-delete-policy: BeforeHookCreation |
0 commit comments