Skip to content

Commit 9d0aefd

Browse files
committed
feat(chart): update chart
Signed-off-by: Peter Balogh <[email protected]>
1 parent a04116b commit 9d0aefd

File tree

4 files changed

+75
-4
lines changed

4 files changed

+75
-4
lines changed

charts/jwt-to-rbac/Chart.yaml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
1-
apiVersion: v1
2-
appVersion: "0.4.0"
1+
apiVersion: v2
2+
appVersion: 0.4.0
33
description: A Helm chart for Kubernetes
44
name: jwt-to-rbac
55
version: 0.4.0
Lines changed: 71 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,71 @@
1+
# Default values for jwt-to-rbac.
2+
# This is a YAML-formatted file.
3+
# Declare variables to be passed into your templates.
4+
5+
replicaCount: 1
6+
7+
image:
8+
repository: ghcr.io/banzaicloud/jwt-to-rbac
9+
tag: latest
10+
pullPolicy: IfNotPresent
11+
12+
nameOverride: ""
13+
fullnameOverride: ""
14+
15+
port:
16+
name: http
17+
containerPort: 5555
18+
protocol: TCP
19+
20+
configDir: /etc/jwt-to-rbac
21+
22+
service:
23+
type: ClusterIP
24+
port: 5555
25+
26+
config:
27+
app:
28+
addr: ":5555"
29+
log:
30+
level: "4"
31+
format: "json"
32+
noColor: true
33+
tokenhandler:
34+
caCertPath: ""
35+
oidc:
36+
clientID: ""
37+
issuerURL: ""
38+
rbachandler:
39+
githubOrg: ""
40+
customGroups: []
41+
42+
ingress:
43+
enabled: false
44+
annotations: {}
45+
# kubernetes.io/ingress.class: nginx
46+
# kubernetes.io/tls-acme: "true"
47+
path: /
48+
hosts:
49+
- chart-example.local
50+
tls: []
51+
# - secretName: chart-example-tls
52+
# hosts:
53+
# - chart-example.local
54+
55+
resources: {}
56+
# We usually recommend not to specify default resources and to leave this as a conscious
57+
# choice for the user. This also increases chances charts run on environments with little
58+
# resources, such as Minikube. If you do want to specify resources, uncomment the following
59+
# lines, adjust them as necessary, and remove the curly braces after 'resources:'.
60+
# limits:
61+
# cpu: 100m
62+
# memory: 128Mi
63+
# requests:
64+
# cpu: 100m
65+
# memory: 128Mi
66+
67+
nodeSelector: {}
68+
69+
tolerations: []
70+
71+
affinity: {}

charts/jwt-to-rbac/templates/deployment.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ spec:
2424
serviceAccountName: {{ include "jwt-to-rbac.name" . }}
2525
containers:
2626
- name: {{ .Chart.Name }}
27-
image: "{{ .Values.image.repository }}:{{ .Values.image.tag }}"
27+
image: "{{ .Values.image.repository }}:{{ .Values.image.tag | default .Chart.AppVersion }}"
2828
imagePullPolicy: {{ .Values.image.pullPolicy }}
2929
securityContext:
3030
runAsUser: 2

charts/jwt-to-rbac/values.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ replicaCount: 1
66

77
image:
88
repository: ghcr.io/banzaicloud/jwt-to-rbac
9-
tag: 0.3.0
9+
tag: ""
1010
pullPolicy: IfNotPresent
1111

1212
nameOverride: ""

0 commit comments

Comments
 (0)