diff options
author | Aaron Hay <aaron.hay@att.com> | 2019-03-20 19:48:42 -0400 |
---|---|---|
committer | Taka Cho <takamune.cho@att.com> | 2019-04-02 14:36:59 -0400 |
commit | 0fc907668d782e8726ac55e6f666cfe7035e0ad8 (patch) | |
tree | f9e9db24e7affb56b58a02ce3c802f8dac7e90b0 /kubernetes/appc/charts/appc-ansible-server/values.yaml | |
parent | 655708d5dba4b1c970fa7c1086914388339fbbb6 (diff) |
expose ansible container on nfs mount
/home/ansible will be exposed in
/dockerdata_fs in order to let
user copy playbook
Change-Id: I01307f461da6e9174127c951c4691b81eddab68b
Issue-ID: APPC-1445
Signed-off-by: Taka Cho <takamune.cho@att.com>
Diffstat (limited to 'kubernetes/appc/charts/appc-ansible-server/values.yaml')
-rw-r--r-- | kubernetes/appc/charts/appc-ansible-server/values.yaml | 26 |
1 files changed, 25 insertions, 1 deletions
diff --git a/kubernetes/appc/charts/appc-ansible-server/values.yaml b/kubernetes/appc/charts/appc-ansible-server/values.yaml index b06d70f758..1e15919b82 100644 --- a/kubernetes/appc/charts/appc-ansible-server/values.yaml +++ b/kubernetes/appc/charts/appc-ansible-server/values.yaml @@ -39,7 +39,7 @@ debugEnabled: false config: appcChartName: appc mysqlServiceName: appc-dbhost - + configDir: /opt/onap/ccsdk # default number of instances replicaCount: 1 @@ -66,6 +66,30 @@ service: portName: appc-ansible-server internalPort: 8000 externalPort: 8000 + nfsprovisionerPrefix: appc + disableNfsProvisioner: true + +## Persist data to a persitent volume +persistence: + enabled: true + + ## A manually managed Persistent Volume and Claim + ## Requires persistence.enabled: true + ## If defined, PVC must be created manually before volume will be bound + # existingClaim: + volumeReclaimPolicy: Retain + + ## database data Persistent Volume Storage Class + ## If defined, storageClassName: <storageClass> + ## If set to "-", storageClassName: "", which disables dynamic provisioning + ## If undefined (the default) or set to null, no storageClassName spec is + ## set, choosing the default provisioner. (gp2 on AWS, standard on + ## GKE, AWS & OpenStack) + accessMode: ReadWriteMany + size: 1Gi + mountPath: /dockerdata-nfs + mountSubPath: appc/ansible + playbookPath: /home/ansible ingress: enabled: false |