Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Feat/oauth2 proxy dependency #36

Merged
merged 12 commits into from
Oct 26, 2023
4 changes: 2 additions & 2 deletions .github/workflows/lint-test.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -34,12 +34,12 @@ jobs:

- name: Run chart-testing (lint)
if: steps.list-changed.outputs.changed == 'true'
run: ct lint --target-branch ${{ github.event.repository.default_branch }} --debug
run: ct lint --chart-repos bitnami=https://charts.bitnami.com/bitnami,opensearch=https://opensearch-project.github.io/helm-charts/,oauth2-proxy=https://oauth2-proxy.github.io/manifests/ --target-branch ${{ github.event.repository.default_branch }} --debug

- name: Create kind cluster
if: steps.list-changed.outputs.changed == 'true'
uses: helm/[email protected]

- name: Run chart-testing (install)
if: steps.list-changed.outputs.changed == 'true'
run: ct install --chart-repos bitnami=https://charts.bitnami.com/bitnami,opensearch=https://opensearch-project.github.io/helm-charts/ --target-branch ${{ github.event.repository.default_branch }} --debug
run: ct install --chart-repos bitnami=https://charts.bitnami.com/bitnami,opensearch=https://opensearch-project.github.io/helm-charts/,oauth2-proxy=https://oauth2-proxy.github.io/manifests/ --target-branch ${{ github.event.repository.default_branch }} --debug
6 changes: 6 additions & 0 deletions charts/steampipe/Chart.lock
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
dependencies:
- name: oauth2-proxy
repository: https://oauth2-proxy.github.io/manifests/
version: 6.18.0
digest: sha256:1cc69f74fdc07bdc0bf0264264eb774e0aeeb6bb5ed0d68507a3c6539a038a71
generated: "2023-10-26T14:33:22.282782756+02:00"
8 changes: 7 additions & 1 deletion charts/steampipe/Chart.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -2,11 +2,17 @@ apiVersion: v2
name: steampipe
description: A Helm chart for Kubernetes to deploy Steampipe
type: application
version: 1.3.0
version: 1.4.0
appVersion: "0.20.12"
home: https://github.com/devops-ia/helm-charts/tree/main/charts/steampipe
sources:
- https://github.com/turbot/steampipe
maintainers:
- name: amartingarcia
url: https://github.com/devops-ia

dependencies:
- name: oauth2-proxy
version: "6.18.0"
repository: https://oauth2-proxy.github.io/manifests/
condition: oauth2Proxy.enabled
Binary file added charts/steampipe/charts/oauth2-proxy-6.18.0.tgz
Binary file not shown.
3 changes: 3 additions & 0 deletions charts/steampipe/templates/deployment.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -148,6 +148,9 @@ spec:
{{- with .Values.extraVolumeMount }}
{{- toYaml . | nindent 12 }}
{{- end }}
{{- with .Values.extraContainers }}
{{- tpl (toYaml .) $ | nindent 8 }}
{{- end }}
{{- with .Values.imagePullSecrets }}
imagePullSecrets:
{{- toYaml . | nindent 8 }}
Expand Down
Loading