UNCLASSIFIED

Commit d32c1b1c authored by James Petersen's avatar James Petersen
Browse files

update the chart to 1.12.2


Signed-off-by: default avatarJames Petersen <jpetersenames@gmail.com>
parent 4c9d6b3c
...@@ -5,7 +5,7 @@ metadata: ...@@ -5,7 +5,7 @@ metadata:
upstream: upstream:
type: git type: git
git: git:
commit: e138550a1a97f0e92f753d210276b7d08908be33 commit: bbaed019f8eb9fbcf0f1281ab6f8b4d2647b4d03
repo: https://github.com/anchore/anchore-charts repo: https://github.com/anchore/anchore-charts
directory: / directory: /
ref: anchore-engine-1.9.5 ref: anchore-engine-1.12.2
...@@ -2,7 +2,7 @@ name: anchore-admission-controller ...@@ -2,7 +2,7 @@ name: anchore-admission-controller
description: A kubernetes admission controller for validating and mutating webhooks that operates against Anchore Engine to make access decisions and annotations description: A kubernetes admission controller for validating and mutating webhooks that operates against Anchore Engine to make access decisions and annotations
apiVersion: v1 apiVersion: v1
appVersion: 0.2.2 appVersion: 0.2.2
version: 0.2.9 version: 0.2.11
home: https://github.com/anchore/kubernetes-admission-controller home: https://github.com/anchore/kubernetes-admission-controller
maintainers: maintainers:
- name: zhill - name: zhill
......
...@@ -44,7 +44,7 @@ kubectl create secret generic anchore-credentials --from-file=credentials.json ...@@ -44,7 +44,7 @@ kubectl create secret generic anchore-credentials --from-file=credentials.json
Next, create a _values.yaml_ for the chart with a minimum set of keys: Next, create a _values.yaml_ for the chart with a minimum set of keys:
``` ```
credentialsSecret: anchore-credentials existingCredentialsSecret: anchore-credentials
anchoreEndpoint: <anchore service endpoint for external api> anchoreEndpoint: <anchore service endpoint for external api>
policySelectors: policySelectors:
- Selector: - Selector:
...@@ -99,6 +99,8 @@ It will remove kubernetes objects which are not removed by a helm delete. Pass t ...@@ -99,6 +99,8 @@ It will remove kubernetes objects which are not removed by a helm delete. Pass t
|---|---|---|---| |---|---|---|---|
|requestAnalysis | boolean | true | Ask anchore to analyze an image that isn't already analyzed |requestAnalysis | boolean | true | Ask anchore to analyze an image that isn't already analyzed
|---|---|---|---| |---|---|---|---|
|initCa.extraEnv | array | [] | Define custom environment variables to pass to init-ca pod |
|---|---|---|---|
## Updating configuration ## Updating configuration
......
...@@ -31,3 +31,8 @@ spec: ...@@ -31,3 +31,8 @@ spec:
volumeMounts: volumeMounts:
- name: init-ca-script - name: init-ca-script
mountPath: /scripts mountPath: /scripts
env:
{{- with .Values.initCa.extraEnv }}
{{- toYaml . | nindent 8 }}
{{- end }}
...@@ -11,5 +11,5 @@ spec: ...@@ -11,5 +11,5 @@ spec:
protocol: TCP protocol: TCP
name: {{ .Values.service.name }} name: {{ .Values.service.name }}
selector: selector:
app: {{ template "anchore-admission-controller.name" . }} app.kubernetes.io/name: {{ template "anchore-admission-controller.name" . }}
release: {{ .Release.Name }} app.kubernetes.io/instance: {{ .Release.Name }}
...@@ -79,3 +79,10 @@ credentials: {} ...@@ -79,3 +79,10 @@ credentials: {}
# password: password1 # password: password1
# - username: user2 # - username: user2
# password: password2 # password: password2
# Settings related to init-ca pod
initCa:
# Define custom environment variables to pass to init-ca pod
extraEnv: []
# - name: FOO
# value: "bar"
dependencies: dependencies:
- name: postgresql - name: postgresql
repository: "" repository: file://./deps/postgresql
version: 1.0.1 version: 1.0.1
- name: postgresql - name: postgresql
repository: "" repository: file://./deps/postgresql
version: 1.0.1 version: 1.0.1
- name: redis - name: redis
repository: https://charts.bitnami.com/bitnami repository: https://charts.bitnami.com/bitnami
version: "10" version: 10.9.0
digest: sha256:c058c785a30ae74b41d3459e0cb91e740a670af06199899342e22426b98cda4f digest: sha256:f764fed6fb7081e73c57591d26e99b82b66e643809a2ba02c1e66bb42782f2b1
generated: "2020-07-08T15:52:50.256837-07:00" generated: "2020-12-16T13:32:27.349956-08:00"
apiVersion: v1 apiVersion: v2
name: anchore-engine name: anchore-engine
version: 1.9.5 version: 1.12.2
appVersion: 0.8.1 appVersion: 0.9.1
description: Anchore container analysis and policy evaluation engine service description: Anchore container analysis and policy evaluation engine service
keywords: keywords:
- analysis - analysis
...@@ -22,3 +22,18 @@ maintainers: ...@@ -22,3 +22,18 @@ maintainers:
email: bradyt@anchore.com email: bradyt@anchore.com
engine: gotpl engine: gotpl
icon: https://anchore.com/wp-content/uploads/2016/08/anchore.png icon: https://anchore.com/wp-content/uploads/2016/08/anchore.png
dependencies:
- name: postgresql
version: "1.0.1"
repository: "file://./deps/postgresql"
condition: postgresql.enabled
- name: postgresql
version: "1.0.1"
repository: "file://./deps/postgresql"
condition: anchore-feeds-db.enabled,anchoreEnterpriseGlobal.enabled
alias: anchore-feeds-db
- name: redis
version: "10"
repository: "https://charts.bitnami.com/bitnami"
condition: anchore-ui-redis.enabled,anchoreEnterpriseGlobal.enabled
alias: anchore-ui-redis
Markdown is supported
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment