Skip to content

Commit

Permalink
add secret (#93)
Browse files Browse the repository at this point in the history
  • Loading branch information
aaronstutzer authored Feb 14, 2024
1 parent 288bed8 commit 96a60bd
Show file tree
Hide file tree
Showing 3 changed files with 14 additions and 3 deletions.
4 changes: 2 additions & 2 deletions charts/gke-ingress/Chart.yaml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
apiVersion: v2
name: gke-ingress
version: 0.2.0
version: 0.3.0
appVersion: 0.1.0
description: gke-ingress and related resources
sources:
Expand All @@ -12,4 +12,4 @@ keywords:
- ingress
annotations:
artifacthub.io/changes: |
- Fix service
- add secret
2 changes: 1 addition & 1 deletion charts/gke-ingress/README.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
# gke-ingress

![Version: 0.2.0](https://img.shields.io/badge/Version-0.2.0-informational?style=flat-square) ![AppVersion: 0.1.0](https://img.shields.io/badge/AppVersion-0.1.0-informational?style=flat-square) ![Release Status](https://github.com/ricardo-ch/helm-charts/workflows/Release%20Charts/badge.svg) [![License](https://img.shields.io/github/license/ricardo-ch/helm-charts)](https://github.com/ricardo-ch/helm-charts/blob/main/LICENSE)
![Version: 0.3.0](https://img.shields.io/badge/Version-0.3.0-informational?style=flat-square) ![AppVersion: 0.1.0](https://img.shields.io/badge/AppVersion-0.1.0-informational?style=flat-square) ![Release Status](https://github.com/ricardo-ch/helm-charts/workflows/Release%20Charts/badge.svg) [![License](https://img.shields.io/github/license/ricardo-ch/helm-charts)](https://github.com/ricardo-ch/helm-charts/blob/main/LICENSE)

gke-ingress and related resources

Expand Down
11 changes: 11 additions & 0 deletions charts/gke-ingress/templates/secret.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,11 @@
{{ with .Values.secret }}
apiVersion: v1
data:
client_id: {{ .client_id}}
client_secret: {{ .client_secret}}
kind: Secret
metadata:
name: iap-secret
namespace: {{ default "istio-ingress" .namespace}}
type: Opaque
{{ end }}

0 comments on commit 96a60bd

Please sign in to comment.