mirror of
https://github.com/pezkuwichain/pezkuwi-subxt.git
synced 2026-04-27 23:18:01 +00:00
f17258c14d
* ci: add Dockerfile and its build * make docker version tag * polkadot with static ip address in nodeport stateful set on kubernetes * use helm for templating * enable rbac for polkadot
13 lines
319 B
YAML
13 lines
319 B
YAML
{{- if .Values.rbac.enable }}
|
|
# service account for polkadot pods themselves
|
|
# no permissions for the api are required
|
|
apiVersion: v1
|
|
kind: ServiceAccount
|
|
metadata:
|
|
labels:
|
|
app: polkadot
|
|
chart: {{ .Chart.Name }}-{{ .Chart.Version }}
|
|
release: {{ .Release.Name }}
|
|
name: {{ .Values.rbac.name }}
|
|
{{- end }}
|