Skip to content

Commit

Permalink
Merge branch 'main' into 227-plugins-init
Browse files Browse the repository at this point in the history
  • Loading branch information
jamengual authored Nov 5, 2023
2 parents f3bb4af + 265d3f5 commit 8f779ee
Show file tree
Hide file tree
Showing 4 changed files with 11 additions and 8 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/release.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ jobs:
version: v3.10.3 # renovate: datasource=github-releases depName=helm packageName=helm/helm

- name: Run chart-releaser
uses: helm/chart-releaser-action@v1.5.0
uses: helm/chart-releaser-action@v1.6.0
env:
CR_TOKEN: "${{ secrets.GITHUB_TOKEN }}"
CR_SKIP_EXISTING: true
Expand Down
2 changes: 1 addition & 1 deletion charts/atlantis/Chart.yaml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
apiVersion: v1
# renovate datasource=docker depName=ghcr.io/runatlantis/atlantis
appVersion: v0.25.0
appVersion: v0.26.0
description: A Helm chart for Atlantis https://www.runatlantis.io
name: atlantis
version: 4.16.0
Expand Down
4 changes: 2 additions & 2 deletions charts/atlantis/templates/statefulset.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -273,7 +273,7 @@ spec:
value: /etc/tls/tls.key
{{- end }}
- name: ATLANTIS_DATA_DIR
value: /atlantis-data
value: {{ .Values.atlantisDataDirectory }}
- name: ATLANTIS_REPO_ALLOWLIST
value: {{ toYaml (coalesce .Values.orgWhitelist .Values.orgAllowlist) }}
- name: ATLANTIS_PORT
Expand Down Expand Up @@ -477,7 +477,7 @@ spec:
volumeMounts:
{{- if or .Values.volumeClaim.enabled .Values.dataStorage }}
- name: atlantis-data
mountPath: /atlantis-data
mountPath: {{ .Values.atlantisDataDirectory }}
{{- end }}
{{- range $name, $_ := .Values.serviceAccountSecrets }}
- name: {{ $name }}-volume
Expand Down
11 changes: 7 additions & 4 deletions charts/atlantis/values.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -321,6 +321,9 @@ resources: {}
# memory: 1Gi
# cpu: 100m

## Path to the data directory for the volumeMount
atlantisDataDirectory: /atlantis-data

## Embedded data volume & volumeMount (default working)
volumeClaim:
enabled: true
Expand Down Expand Up @@ -544,10 +547,10 @@ servicemonitor:
externalSecret:
# authentication based on an external secret
enabled: false
name: atlantis-env
keys:
username: USERNAME
password: ATLANTIS_WEB_PASSWORD
# name: atlantis-env
# keys:
# username: USERNAME
# password: ATLANTIS_WEB_PASSWORD

# Enable this if you're using Google Managed Prometheus
podMonitor:
Expand Down

0 comments on commit 8f779ee

Please sign in to comment.