File tree Expand file tree Collapse file tree 4 files changed +75
-4
lines changed Expand file tree Collapse file tree 4 files changed +75
-4
lines changed Original file line number Diff line number Diff line change 1- apiVersion : v1
2- appVersion : " 0.4.0"
1+ apiVersion : v2
2+ appVersion : 0.4.0
33description : A Helm chart for Kubernetes
44name : jwt-to-rbac
55version : 0.4.0
Original file line number Diff line number Diff line change 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 : {}
Original file line number Diff line number Diff line change 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
Original file line number Diff line number Diff line change @@ -6,7 +6,7 @@ replicaCount: 1
66
77image :
88 repository : ghcr.io/banzaicloud/jwt-to-rbac
9- tag : 0.3.0
9+ tag : " "
1010 pullPolicy : IfNotPresent
1111
1212nameOverride : " "
You can’t perform that action at this time.
0 commit comments