diff options
author | Jason DeTiberus <jdetiber@redhat.com> | 2016-02-03 16:27:30 -0500 |
---|---|---|
committer | Jason DeTiberus <jdetiber@redhat.com> | 2016-02-09 15:51:35 -0500 |
commit | d30acfb23637525cf79cd05c94d0d3c900cc4b88 (patch) | |
tree | 8b92294835b3c945e246fa09cbb70b0a50d7b07a /roles/openshift_serviceaccounts/templates | |
parent | 34455e0f4f2d4b6ea0b21703f711448e947bf0c7 (diff) | |
download | openshift-d30acfb23637525cf79cd05c94d0d3c900cc4b88.tar.gz openshift-d30acfb23637525cf79cd05c94d0d3c900cc4b88.tar.bz2 openshift-d30acfb23637525cf79cd05c94d0d3c900cc4b88.tar.xz openshift-d30acfb23637525cf79cd05c94d0d3c900cc4b88.zip |
openshift_serviceaccounts updates
- make service account creation more flexible
- create service accounts near where they are consumed
Diffstat (limited to 'roles/openshift_serviceaccounts/templates')
-rw-r--r-- | roles/openshift_serviceaccounts/templates/serviceaccount.j2 | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/roles/openshift_serviceaccounts/templates/serviceaccount.j2 b/roles/openshift_serviceaccounts/templates/serviceaccount.j2 index 931e249f9..c5f12421f 100644 --- a/roles/openshift_serviceaccounts/templates/serviceaccount.j2 +++ b/roles/openshift_serviceaccounts/templates/serviceaccount.j2 @@ -1,4 +1,4 @@ apiVersion: v1 kind: ServiceAccount metadata: - name: {{ item }} + name: {{ item.0 }} |