X-Git-Url: https://gerrit.onap.org/r/gitweb?a=blobdiff_plain;f=kubernetes%2Fvfc%2Fvalues.yaml;h=01d9eefd670bb6815e3699b7f2b1af4b1342a490;hb=92faa91ee07ea36a5e29f61eb97491f975e6edb4;hp=5a8fa38eb966e719c164b043e585e332044292af;hpb=7dba27e97aae16d6d12833a0593ec828bfef38c4;p=oom.git diff --git a/kubernetes/vfc/values.yaml b/kubernetes/vfc/values.yaml index 5a8fa38eb9..01d9eefd67 100644 --- a/kubernetes/vfc/values.yaml +++ b/kubernetes/vfc/values.yaml @@ -14,14 +14,91 @@ global: config: + ssl_enabled: false + msbprotocol: https msbServiceName: msb-iag - msbPort: 80 + msbPort: 443 + redisServiceName: vfc-redis + redisPort: 6379 +# Becaue now oom can register the microservice to msb automatically, +# If it is set to false, vfc contanier will not register again, if it is +# set to true, vfc will register by itself. +# we use this flag to determine who is responbile for serice registeration +# and it can reduce duplicate registration. + reg_to_msb_when_start: False + mariadb_admin: &mariadbAdmin root + persistence: + mountPath: /dockerdata-nfs + mariadbGalera: &mariadbGalera + #This flag allows VFC to instantiate its own mariadb-galera cluster + localCluster: false + service: mariadb-galera + internalPort: 3306 + nameOverride: mariadb-galera + centralizedLoggingEnabled: true + +################################################################# +# Secrets metaconfig +################################################################# +secrets: + - uid: db-root-pass + name: &dbRootPassSecret '{{ include "common.release" . }}-vfc-db-root-pass' + externalSecret: '{{ ternary "" (tpl (default "" (index .Values "mariadb-galera" "rootUser" "externalSecret")) .) (hasSuffix "db-root-pass" (index .Values "mariadb-galera" "rootUser" "externalSecret"))}}' + login: '{{ index .Values "mariadb-galera" "rootUser" "user" }}' + password: '{{ index .Values "mariadb-galera" "rootUser" "password" }}' + type: password # application configuration config: logstashServiceName: log-ls logstashPort: 5044 +mariadb-galera: &localMariadb + rootUser: + user: *mariadbAdmin + # password: + externalSecret: *dbRootPassSecret + nameOverride: &dbServer vfc-mariadb + nfsprovisionerPrefix: vfc + persistence: + mountSubPath: vfc/data + enabled: true + disableNfsProvisioner: true + serviceAccount: + nameOverride: *dbServer + replicaCount: 1 + +vfc-generic-vnfm-driver: + enabled: true + logConfigMapNamePrefix: '{{ include "common.release" . }}-vfc' + +vfc-huawei-vnfm-driver: + enabled: true + logConfigMapNamePrefix: '{{ include "common.release" . }}-vfc' + +vfc-nslcm: + enabled: true + mariadb-galera: *localMariadb + logConfigMapNamePrefix: '{{ include "common.release" . }}-vfc' + +vfc-redis: + enabled: true + +vfc-vnflcm: + enabled: true + mariadb-galera: *localMariadb + logConfigMapNamePrefix: '{{ include "common.release" . }}-vfc' + +vfc-vnfmgr: + enabled: true + mariadb-galera: *localMariadb + logConfigMapNamePrefix: '{{ include "common.release" . }}-vfc' + +vfc-vnfres: + enabled: true + mariadb-galera: *localMariadb + logConfigMapNamePrefix: '{{ include "common.release" . }}-vfc' + # sub-chart configuration vfc-workflow: service: @@ -30,3 +107,7 @@ vfc-workflow: vfc-workflow-engine: config: workflowPort: 10550 + +vfc-zte-vnfm-driver: + enabled: true + logConfigMapNamePrefix: '{{ include "common.release" . }}-vfc'