blob: fc1894f69ea34e8e61a3aef1322fe70577f7bd35 [file] [log] [blame]
Woojoong Kim9bcff462019-09-19 12:59:01 -07001{{- /*
2Copyright 2019-present Open Networking Foundation
3
4Licensed under the Apache License, Version 2.0 (the "License");
5you may not use this file except in compliance with the License.
6You may obtain a copy of the License at
7
8http://www.apache.org/licenses/LICENSE-2.0
9
10Unless required by applicable law or agreed to in writing, software
11distributed under the License is distributed on an "AS IS" BASIS,
12WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13See the License for the specific language governing permissions and
14limitations under the License.
15*/ -}}
16
17{{/*
18Renders a set of standardised labels
19*/}}
20{{- define "cdn-local.metadata_labels" -}}
21{{- $application := index . 0 -}}
22{{- $context := index . 1 -}}
23release: {{ $context.Release.Name }}
24app: {{ $application }}
25{{- end -}}
26
27{{/*
28Render the given template.
29*/}}
30{{- define "cdn-local.template" -}}
31{{- $name := index . 0 -}}
32{{- $context := index . 1 -}}
33{{- $last := base $context.Template.Name }}
34{{- $wtf := $context.Template.Name | replace $last $name -}}
35{{ include $wtf $context }}
36{{- end -}}
37
38{{/*
39Render ServiceAccount, Role, and RoleBinding required for kubernetes-entrypoint.
40*/}}
41{{- define "cdn-local.service_account" -}}
42{{- $saName := index . 0 -}}
43{{- $context := index . 1 -}}
44{{- $saNamespace := $context.Release.Namespace }}
45---
46apiVersion: v1
47kind: ServiceAccount
48metadata:
49 name: {{ $saName }}
50 namespace: {{ $saNamespace }}
51 labels:
52{{ tuple $saName $context | include "cdn-local.metadata_labels" | indent 4 }}
53---
54apiVersion: rbac.authorization.k8s.io/v1beta1
55kind: RoleBinding
56metadata:
57 name: {{ $saName }}
58 namespace: {{ $saNamespace }}
59 labels:
60{{ tuple $saName $context | include "cdn-local.metadata_labels" | indent 4 }}
61roleRef:
62 apiGroup: rbac.authorization.k8s.io
63 kind: Role
64 name: {{ $saName }}
65subjects:
66 - kind: ServiceAccount
67 name: {{ $saName }}
68 namespace: {{ $saNamespace }}
69---
70apiVersion: rbac.authorization.k8s.io/v1beta1
71kind: Role
72metadata:
73 name: {{ $saName }}
74 namespace: {{ $saNamespace }}
75 labels:
76{{ tuple $saName $context | include "cdn-local.metadata_labels" | indent 4 }}
77rules:
78 - apiGroups:
79 - ""
80 - extensions
81 - batch
82 - apps
83 verbs:
84 - get
85 - list
86 - patch
87 resources:
88 - statefulsets
89 - daemonsets
90 - jobs
91 - pods
92 - services
93 - endpoints
94 - configmaps
95{{- end -}}