Kubernetes- Helm upgrade not working -


i trying upgrade 1 of chart. changes have made in "deployment.yaml" template in chart not there after upgrade. added following lines in spec of kubernetes deployment.yaml file

spec:   containers:   - env:     - name: logback_db_acquire_increment       value: "1"     - name: logback_db_max_idle_time_excess_connections       value: "10"     - name: logback_db_max_pool_size       value: "2"     - name: logback_db_min_pool_size       value: "1" 

i tried upgrading using following command

helm upgrade ironic-molly spring-app-0.1.2.tgz --recreate-pods

where "ironic-molly" release-name , spring-app-0.1.2.tgz chart changes.

helm output says package upgraded, changes have made missing in deployment.yaml. might causing issue.?

regards,

muhammed roshan

syntax (indents)

spec:   containers:   - env:     - name: logback_db_acquire_increment       value: "1"     - name: logback_db_max_idle_time_excess_connections       value: "10"     - name: logback_db_max_pool_size       value: "2"     - name: logback_db_min_pool_size       value: "1" 

should trick


Comments

Popular posts from this blog

php - Vagrant up error - Uncaught Reflection Exception: Class DOMDocument does not exist -

vue.js - Create hooks for automated testing -

Add new key value to json node in java -