Skip to content

Commit

Permalink
Remove duplicate key name in the Helm chart's Deployment template (#…
Browse files Browse the repository at this point in the history
…216)

* Remove duplicate key 'name' in the Helm chart's Deployment template

* Add change log

---------

Co-authored-by: Aleksandr Rybolovlev <sacha.rybolovlev@hashicorp.com>
  • Loading branch information
kieranbrown and arybolovlev authored Jul 19, 2023
1 parent 125a544 commit dfe8096
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 2 deletions.
6 changes: 6 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,9 @@
## 2.0.0-beta8 (UNRELEASED)

BUG FIXES:
* `AgentPool`: fix an issue when `plan_queued` and `apply_queued` statuses do not trigger agent scaling. [[GH-215](https://github.com/hashicorp/terraform-cloud-operator/pull/215)]
* `Helm Chart`: fix an issue with the Deployment template in the Helm chart where `name` in path `spec.template.spec.containers[0]` was duplicated. [[GH-216](https://github.com/hashicorp/terraform-cloud-operator/pull/216)]

## 2.0.0-beta7 (July 07, 2023)

NOTES:
Expand Down
3 changes: 1 addition & 2 deletions charts/terraform-cloud-operator/templates/deployment.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ spec:
control-plane: {{ .Release.Name }}-controller-manager
spec:
containers:
- name: {{ .Chart.Name }}
- name: manager
image: "{{ .Values.operator.image.repository }}:{{ .Values.operator.image.tag | default .Chart.AppVersion }}"
imagePullPolicy: {{ .Values.operator.image.pullPolicy }}
args:
Expand Down Expand Up @@ -52,7 +52,6 @@ spec:
port: 8081
initialDelaySeconds: 15
periodSeconds: 20
name: manager
readinessProbe:
httpGet:
path: /readyz
Expand Down

0 comments on commit dfe8096

Please sign in to comment.