diff --git a/stable/kai/templates/configmap.yaml b/stable/kai/templates/configmap.yaml index 0e4d8105..1b477e30 100644 --- a/stable/kai/templates/configmap.yaml +++ b/stable/kai/templates/configmap.yaml @@ -26,6 +26,7 @@ data: url: {{ .Values.kai.anchore.url }} user: {{ .Values.kai.anchore.user }} password: $KAI_ANCHORE_PASSWORD + account: {{ .Values.kai.anchore.account }} http: insecure: {{ .Values.kai.anchore.http.insecure }} timeoutSeconds: {{ .Values.kai.anchore.http.timeoutSeconds }} diff --git a/stable/kai/values.yaml b/stable/kai/values.yaml index b3f224f4..749c55fd 100644 --- a/stable/kai/values.yaml +++ b/stable/kai/values.yaml @@ -111,10 +111,13 @@ kai: anchore: url: + # Note: the user specified must be an admin user or have full-control, or read-write RBAC permissions user: admin password: foobar - # account: admin # defaults to 'admin' when not specified + + # defaults to 'admin' when not specified + account: admin http: insecure: true timeoutSeconds: 10