Skip to content

Commit

Permalink
Fix operator deployment template spec (#221)
Browse files Browse the repository at this point in the history
* Fix operator deployment template spec

* Value should be a string

* More explicit stringification
  • Loading branch information
Vivek Lakshmanan authored Oct 11, 2021
1 parent e1c6fab commit 792be1f
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
4 changes: 2 additions & 2 deletions deploy/operator_template.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,7 @@ spec:
- name: OPERATOR_NAME
value: "pulumi-kubernetes-operator"
- name: GRACEFUL_SHUTDOWN_TIMEOUT_DURATION
value: 5m
value: "5m"
- name: MAX_CONCURRENT_RECONCILES
- value: 10
value: "10"
terminationGracePeriodSeconds: 300 # Should be same or larger than GRACEFUL_SHUTDOWN_TIMEOUT_DURATION
4 changes: 2 additions & 2 deletions deploy/yaml/operator.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,7 @@ spec:
- name: OPERATOR_NAME
value: "pulumi-kubernetes-operator"
- name: GRACEFUL_SHUTDOWN_TIMEOUT_DURATION
value: 5m
value: "5m"
- name: MAX_CONCURRENT_RECONCILES
- value: 10
value: "10"
terminationGracePeriodSeconds: 300 # Should be same or larger than GRACEFUL_SHUTDOWN_TIMEOUT_DURATION

0 comments on commit 792be1f

Please sign in to comment.