Mike Elliott | d32d36e | 2018-02-12 15:54:03 -0500 | [diff] [blame] | 1 | # Default values for so. |
| 2 | # This is a YAML-formatted file. |
| 3 | # Declare variables to be passed into your templates. |
| 4 | global: # global defaults |
| 5 | nodePortPrefix: 302 |
| 6 | repositorySecret: eyJuZXh1czMub25hcC5vcmc6MTAwMDEiOnsidXNlcm5hbWUiOiJkb2NrZXIiLCJwYXNzd29yZCI6ImRvY2tlciIsImVtYWlsIjoiQCIsImF1dGgiOiJaRzlqYTJWeU9tUnZZMnRsY2c9PSJ9fQ== |
| 7 | readinessRepository: oomk8s |
| 8 | readinessImage: readiness-check:1.0.0 |
| 9 | loggingRepository: docker.elastic.co |
| 10 | loggingImage: beats/filebeat:5.5.0 |
| 11 | |
Mandeep Khinda | a57d8dd | 2018-03-09 14:29:37 +0000 | [diff] [blame] | 12 | subChartsOnly: |
| 13 | enabled: true |
Mike Elliott | d32d36e | 2018-02-12 15:54:03 -0500 | [diff] [blame] | 14 | |
| 15 | # application image |
| 16 | repository: nexus3.onap.org:10001 |
| 17 | image: openecomp/mso:1.2-STAGING-latest |
| 18 | pullPolicy: Always |
| 19 | |
| 20 | # flag to enable debugging - application support required |
| 21 | debugEnabled: false |
| 22 | |
| 23 | # application configuration |
| 24 | config: |
| 25 | # message router configuration |
| 26 | dmaapTopic: "AUTO" |
| 27 | # openstack configuration |
| 28 | openStackUserName: "vnf_user" |
| 29 | openStackRegion: "RegionOne" |
| 30 | openStackKeyStoneUrl: "http://1.2.3.4:5000" |
| 31 | openStackServiceTenantName: "service" |
| 32 | openStackEncryptedPasswordHere: "c124921a3a0efbe579782cde8227681e" |
| 33 | |
| 34 | |
| 35 | # default number of instances |
| 36 | replicaCount: 1 |
| 37 | |
| 38 | nodeSelector: {} |
| 39 | |
| 40 | affinity: {} |
| 41 | |
| 42 | # probe configuration parameters |
| 43 | liveness: |
| 44 | initialDelaySeconds: 10 |
| 45 | periodSeconds: 10 |
| 46 | # necessary to disable liveness probe when setting breakpoints |
| 47 | # in debugger so K8s doesn't restart unresponsive container |
| 48 | enabled: true |
| 49 | |
| 50 | readiness: |
| 51 | initialDelaySeconds: 10 |
| 52 | periodSeconds: 10 |
| 53 | |
| 54 | service: |
| 55 | type: NodePort |
| 56 | name: so |
| 57 | externalPort: 23 |
| 58 | internalPort: 8080 |
| 59 | externalPort2: 25 |
| 60 | internalPort2: 3904 |
| 61 | externalPort3: 24 |
| 62 | internalPort3: 3905 |
| 63 | externalPort4: 22 |
| 64 | internalPort4: 9990 |
| 65 | externalPort5: 50 |
| 66 | internalPort5: 8787 |
| 67 | |
| 68 | ingress: |
| 69 | enabled: false |
| 70 | |
| 71 | resources: {} |
| 72 | # We usually recommend not to specify default resources and to leave this as a conscious |
| 73 | # choice for the user. This also increases chances charts run on environments with little |
| 74 | # resources, such as Minikube. If you do want to specify resources, uncomment the following |
| 75 | # lines, adjust them as necessary, and remove the curly braces after 'resources:'. |
| 76 | # |
| 77 | # Example: |
| 78 | # Configure resource requests and limits |
| 79 | # ref: http://kubernetes.io/docs/user-guide/compute-resources/ |
| 80 | # Minimum memory for development is 2 CPU cores and 4GB memory |
| 81 | # Minimum memory for production is 4 CPU cores and 8GB memory |
| 82 | #resources: |
| 83 | # limits: |
| 84 | # cpu: 2 |
| 85 | # memory: 4Gi |
| 86 | # requests: |
| 87 | # cpu: 2 |
| 88 | # memory: 4Gi |