Fix typo for kubernetes_service_account_annotations variable

This commit is contained in:
Harrison Katz
2020-12-04 14:02:51 -05:00
committed by GitHub
parent 973c9d313e
commit 182ff3464e

View File

@@ -4,7 +4,7 @@ kind: ServiceAccount
metadata:
name: {{ kubernetes_serviceaccount_name }}
namespace: {{ kubernetes_namespace }}
{% if kubernetes_service_account_is defined %}
{% if kubernetes_service_account_annotations is defined %}
annotations:
{% for key, value in kubernetes_service_account_annotations.items() %}
{{ key }}: {{ value | quote }}