Mike Elliott | 13fed11 | 2018-02-28 08:33:33 -0500 | [diff] [blame] | 1 | ################################################################# |
| 2 | # Global configuration defaults. |
| 3 | ################################################################# |
| 4 | global: |
| 5 | nodePortPrefix: 302 |
| 6 | repositorySecret: eyJuZXh1czMub25hcC5vcmc6MTAwMDEiOnsidXNlcm5hbWUiOiJkb2NrZXIiLCJwYXNzd29yZCI6ImRvY2tlciIsImVtYWlsIjoiQCIsImF1dGgiOiJaRzlqYTJWeU9tUnZZMnRsY2c9PSJ9fQ== |
| 7 | persistence: {} |
| 8 | readinessRepository: oomk8s |
| 9 | readinessImage: readiness-check:1.0.0 |
| 10 | |
| 11 | |
| 12 | ################################################################# |
| 13 | # Application configuration defaults. |
| 14 | ################################################################# |
| 15 | |
| 16 | #repository: mysql |
| 17 | repository: registry.hub.docker.com |
| 18 | image: library/mysql:5.7 |
| 19 | pullPolicy: Always |
| 20 | |
| 21 | # application configuration |
| 22 | config: |
| 23 | dbRootPassword: openECOMP1.0 |
| 24 | |
| 25 | # default number of instances |
| 26 | replicaCount: 1 |
| 27 | |
| 28 | nodeSelector: {} |
| 29 | |
| 30 | affinity: {} |
| 31 | |
| 32 | # probe configuration parameters |
| 33 | liveness: |
| 34 | initialDelaySeconds: 30 |
| 35 | periodSeconds: 10 |
| 36 | timeoutSeconds: 5 |
| 37 | # necessary to disable liveness probe when setting breakpoints |
| 38 | # in debugger so K8s doesn't restart unresponsive container |
| 39 | enabled: true |
| 40 | |
| 41 | readiness: |
| 42 | initialDelaySeconds: 5 |
| 43 | periodSeconds: 10 |
| 44 | |
| 45 | ## Persist data to a persitent volume |
| 46 | persistence: |
| 47 | enabled: false |
| 48 | |
| 49 | ## A manually managed Persistent Volume and Claim |
| 50 | ## Requires persistence.enabled: true |
| 51 | ## If defined, PVC must be created manually before volume will be bound |
| 52 | # existingClaim: |
| 53 | volumeReclaimPolicy: Retain |
| 54 | |
| 55 | ## database data Persistent Volume Storage Class |
| 56 | ## If defined, storageClassName: <storageClass> |
| 57 | ## If set to "-", storageClassName: "", which disables dynamic provisioning |
| 58 | ## If undefined (the default) or set to null, no storageClassName spec is |
| 59 | ## set, choosing the default provisioner. (gp2 on AWS, standard on |
| 60 | ## GKE, AWS & OpenStack) |
| 61 | accessMode: ReadWriteMany |
| 62 | size: 1Gi |
| 63 | mountPath: /dockerdata-nfs |
| 64 | mountSubPath: mysql/data |
| 65 | |
| 66 | service: |
| 67 | name: mysql |
| 68 | internalPort: 3306 |
| 69 | # nfs provisioner ports |
| 70 | nfsPort: 2049 |
| 71 | mountdPort: 20048 |
| 72 | rpcbindPort: 111 |
| 73 | rpcbindUdpPort: 111 |
| 74 | |
| 75 | ingress: |
| 76 | enabled: false |
| 77 | |
| 78 | resources: {} |
| 79 | # We usually recommend not to specify default resources and to leave this as a conscious |
| 80 | # choice for the user. This also increases chances charts run on environments with little |
| 81 | # resources, such as Minikube. If you do want to specify resources, uncomment the following |
| 82 | # lines, adjust them as necessary, and remove the curly braces after 'resources:'. |
| 83 | # |
| 84 | # Example: |
| 85 | # Configure resource requests and limits |
| 86 | # ref: http://kubernetes.io/docs/user-guide/compute-resources/ |
| 87 | # Minimum memory for development is 2 CPU cores and 4GB memory |
| 88 | # Minimum memory for production is 4 CPU cores and 8GB memory |
| 89 | #resources: |
| 90 | # limits: |
| 91 | # cpu: 2 |
| 92 | # memory: 4Gi |
| 93 | # requests: |
| 94 | # cpu: 2 |
| 95 | # memory: 4Gi |
| 96 | |
| 97 | ################################################################# |
| 98 | # Sidecar Configuration. |
| 99 | # |
| 100 | # xtrabackup configuration defaults. |
| 101 | ################################################################# |
| 102 | xtrabackupRepository: gcr.io/google-samples |
| 103 | xtrabackupImage: xtrabackup:1.0 |
| 104 | xtrabackup: |
| 105 | internalPort: 3307 |
| 106 | |
| 107 | nfsprovisionerRepository: quay.io |
| 108 | nfsprovisionerImage: kubernetes_incubator/nfs-provisioner:v1.0.8 |
| 109 | nfsprovisionerPrefix: mysql |
| 110 | |
| 111 | sdnctlPrefix: mysql |