Skip to content

Commit

Permalink
enc secret (#94)
Browse files Browse the repository at this point in the history
  • Loading branch information
aaronstutzer authored Feb 15, 2024
1 parent 96a60bd commit 4acfe68
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion 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.3.0
version: 0.4.0
appVersion: 0.1.0
description: gke-ingress and related resources
sources:
Expand Down
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.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)
![Version: 0.4.0](https://img.shields.io/badge/Version-0.4.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
4 changes: 2 additions & 2 deletions charts/gke-ingress/templates/secret.yaml
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
{{ with .Values.secret }}
apiVersion: v1
data:
client_id: {{ .client_id}}
client_secret: {{ .client_secret}}
client_id: {{ .client_id | b64enc }}
client_secret: {{ .client_secret | b64enc }}
kind: Secret
metadata:
name: iap-secret
Expand Down

0 comments on commit 4acfe68

Please sign in to comment.