Skip to content

Commit

Permalink
Use /aws/ as AWS_SHARED_CREDENTIALS_FILE to overcome changes in b…
Browse files Browse the repository at this point in the history
…ase images. (#270)
  • Loading branch information
Christian Bianchi authored Feb 28, 2024
1 parent 17481d2 commit de39e1b
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 2 deletions.
4 changes: 4 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -11,6 +11,10 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0

- Use `cert-manager-app` as service account name for Cert Manager (changed in recent version of cert-manager-app).

### Fixed

- Use `/aws/` as `AWS_SHARED_CREDENTIALS_FILE` to overcome changes in base images.

## [0.15.0] - 2024-01-10

### Changed
Expand Down
4 changes: 2 additions & 2 deletions helm/capa-iam-operator/templates/deployment.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -51,7 +51,7 @@ spec:
image: "{{ .Values.registry.domain }}/{{ .Values.image.name }}:{{ .Values.image.tag }}"
env:
- name: AWS_SHARED_CREDENTIALS_FILE
value: /home/.aws/credentials
value: /aws/credentials
command:
- /manager
args:
Expand All @@ -70,7 +70,7 @@ spec:
cpu: 200m
memory: 128Mi
volumeMounts:
- mountPath: /home/.aws
- mountPath: /aws
name: credentials
terminationGracePeriodSeconds: 10
volumes:
Expand Down

0 comments on commit de39e1b

Please sign in to comment.