mirror of
https://github.com/ansible/awx.git
synced 2026-03-06 11:11:07 -03:30
add Service Account annotation
Signed-off-by: Donovan Murphy <dono@dono.email>
This commit is contained in:
@@ -4,6 +4,12 @@ kind: ServiceAccount
|
|||||||
metadata:
|
metadata:
|
||||||
name: awx
|
name: awx
|
||||||
namespace: {{ kubernetes_namespace }}
|
namespace: {{ kubernetes_namespace }}
|
||||||
|
{% if kubernetes_service_account_annotations is defined %}
|
||||||
|
annotations:
|
||||||
|
{% for key, value in kubernetes_service_account_annotations.items() %}
|
||||||
|
{{ key }}: {{ value }}
|
||||||
|
{% endfor %}
|
||||||
|
{% endif %}
|
||||||
{% if kubernetes_image_pull_secrets is defined %}
|
{% if kubernetes_image_pull_secrets is defined %}
|
||||||
imagePullSecrets:
|
imagePullSecrets:
|
||||||
- name: "{{ kubernetes_image_pull_secrets }}"
|
- name: "{{ kubernetes_image_pull_secrets }}"
|
||||||
|
|||||||
Reference in New Issue
Block a user