Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

feat: make log_level and malware api configurable #417

Merged
merged 9 commits into from
Nov 20, 2024
4 changes: 2 additions & 2 deletions stable/enterprise/Chart.yaml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
apiVersion: v2
name: enterprise
version: "3.1.0"
appVersion: "5.11.0"
version: "3.1.2"
appVersion: "5.12.0"
kubeVersion: 1.23.x - 1.31.x || 1.23.x-x - 1.31.x-x
description: |
Anchore Enterprise is a complete container security workflow solution for professional teams. Easily integrating with CI/CD systems,
Expand Down
254 changes: 127 additions & 127 deletions stable/enterprise/README.md

Large diffs are not rendered by default.

3 changes: 3 additions & 0 deletions stable/enterprise/ci/openshift-test.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -14,3 +14,6 @@ ui-redis:
enabled: false
containerSecurityContext:
enabled: false
image: docker.io/anchore/enterprise-dev:rc
ui:
image: docker.io/anchore/anchore-on-prem-ui-dev:rc
3 changes: 3 additions & 0 deletions stable/enterprise/ci/rc-values.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
image: docker.io/anchore/enterprise-dev:rc
ui:
image: docker.io/anchore/anchore-on-prem-ui-dev:rc
3 changes: 3 additions & 0 deletions stable/enterprise/files/default_config.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -64,6 +64,9 @@ webhooks: {{- toYaml .Values.anchoreConfig.webhooks | nindent 2 }}
default_admin_password: "${ANCHORE_ADMIN_PASSWORD}"
default_admin_email: ${ANCHORE_ADMIN_EMAIL}

configuration:
api_driven_configuration_enabled: ${ANCHORE_API_DRIVEN_CONFIGURATION_ENABLED}

keys:
secret: "${ANCHORE_SAML_SECRET}"
public_key_path: ${ANCHORE_AUTH_PRIVKEY}
Expand Down
3 changes: 3 additions & 0 deletions stable/enterprise/files/osaa_config.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -64,6 +64,9 @@ webhooks: {{- toYaml .Values.anchoreConfig.webhooks | nindent 2 }}
default_admin_password: "${ANCHORE_ADMIN_PASSWORD}"
default_admin_email: ${ANCHORE_ADMIN_EMAIL}

configuration:
api_driven_configuration_enabled: ${ANCHORE_API_DRIVEN_CONFIGURATION_ENABLED}

keys:
secret: "${ANCHORE_SAML_SECRET}"
public_key_path: ${ANCHORE_AUTH_PRIVKEY}
Expand Down
1 change: 1 addition & 0 deletions stable/enterprise/templates/envvars_configmap.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,7 @@ metadata:

data:
ANCHORE_ADMIN_EMAIL: "{{ .Values.anchoreConfig.default_admin_email }}"
ANCHORE_API_DRIVEN_CONFIGURATION_ENABLED: "true"
ANCHORE_ALLOW_ECR_IAM_AUTO: "{{ .Values.anchoreConfig.allow_awsecr_iam_auto }}"
ANCHORE_ANALYZER_TASK_REQUEUE: "true"
ANCHORE_AUTH_ENABLE_HASHED_PASSWORDS: "{{ .Values.anchoreConfig.user_authentication.hashed_passwords }}"
Expand Down
Loading
Loading