File tree Expand file tree Collapse file tree 4 files changed +22
-1
lines changed
Expand file tree Collapse file tree 4 files changed +22
-1
lines changed Original file line number Diff line number Diff line change @@ -15,7 +15,7 @@ type: application
1515# This is the chart version. This version number should be incremented each time you make changes
1616# to the chart and its templates, including the app version.
1717# Versions are expected to follow Semantic Versioning (https://semver.org/)
18- version : 0.1.1
18+ version : 0.1.2
1919
2020# This is the version number of the application being deployed. This version number should be
2121# incremented each time you make changes to the application. Versions are not expected to
Original file line number Diff line number Diff line change 4747 port : http
4848 resources :
4949 {{- toYaml .Values.resources | nindent 12 }}
50+ {{- if .Values.podspec }}
51+ {{- toYaml .Values.podspec | nindent 10 }}
52+ {{- end }}
5053 {{- with .Values.nodeSelector }}
5154 nodeSelector :
5255 {{- toYaml . | nindent 8 }}
Original file line number Diff line number Diff line change @@ -23,6 +23,14 @@ serviceAccount:
2323 # If not set and create is true, a name is generated using the fullname template
2424 name : " "
2525
26+ podspec : {}
27+ # env:
28+ # - name: BlobStorage
29+ # valueFrom:
30+ # secretKeyRef:
31+ # key: BlobStorage
32+ # name: environment-settings
33+
2634podAnnotations : {}
2735
2836podSecurityContext : {}
Original file line number Diff line number Diff line change 1+ Param (
2+ [String ]
3+ $namespace
4+ )
5+
6+ $apiResources = $ (kubectl api- resources -- verbs= list -- namespaced - o name)
7+
8+ foreach ($resource in $apiResources ) {
9+ kubectl get -- show-kind -- ignore- not- found - n $namespace $resource - o name
10+ }
You can’t perform that action at this time.
0 commit comments