Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions scanners/amass/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -69,6 +69,7 @@ Kubernetes: `>=v1.11.0-0`

| Key | Type | Default | Description |
|-----|------|---------|-------------|
| parser.env | list | `[]` | Optional environment variables mapped into each parseJob (see: https://kubernetes.io/docs/tasks/inject-data-application/define-environment-variable-container/) |
| parser.image.repository | string | `"docker.io/securecodebox/parser-amass"` | Parser image repository |
| parser.image.tag | string | defaults to the charts version | Parser image tag |
| parser.ttlSecondsAfterFinished | string | `nil` | seconds after which the kubernetes job for the parser will be deleted. Requires the Kubernetes TTLAfterFinished controller: https://kubernetes.io/docs/concepts/workloads/controllers/ttlafterfinished/ |
Expand Down
1 change: 1 addition & 0 deletions scanners/amass/docs/README.ArtifactHub.md
Original file line number Diff line number Diff line change
Expand Up @@ -74,6 +74,7 @@ Kubernetes: `>=v1.11.0-0`

| Key | Type | Default | Description |
|-----|------|---------|-------------|
| parser.env | list | `[]` | Optional environment variables mapped into each parseJob (see: https://kubernetes.io/docs/tasks/inject-data-application/define-environment-variable-container/) |
| parser.image.repository | string | `"docker.io/securecodebox/parser-amass"` | Parser image repository |
| parser.image.tag | string | defaults to the charts version | Parser image tag |
| parser.ttlSecondsAfterFinished | string | `nil` | seconds after which the kubernetes job for the parser will be deleted. Requires the Kubernetes TTLAfterFinished controller: https://kubernetes.io/docs/concepts/workloads/controllers/ttlafterfinished/ |
Expand Down
2 changes: 2 additions & 0 deletions scanners/amass/templates/amass-parse-definition.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -9,3 +9,5 @@ metadata:
spec:
image: "{{ .Values.parser.image.repository }}:{{ .Values.parser.image.tag | default .Chart.Version }}"
ttlSecondsAfterFinished: {{ .Values.parser.ttlSecondsAfterFinished }}
env:
{{- toYaml .Values.parser.env | nindent 4 }}
2 changes: 2 additions & 0 deletions scanners/amass/values.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -12,6 +12,8 @@ parser:

# parser.ttlSecondsAfterFinished -- seconds after which the kubernetes job for the parser will be deleted. Requires the Kubernetes TTLAfterFinished controller: https://kubernetes.io/docs/concepts/workloads/controllers/ttlafterfinished/
ttlSecondsAfterFinished: null
# parser.env -- Optional environment variables mapped into each parseJob (see: https://kubernetes.io/docs/tasks/inject-data-application/define-environment-variable-container/)
env: []

scanner:
image:
Expand Down
1 change: 1 addition & 0 deletions scanners/angularjs-csti-scanner/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -168,6 +168,7 @@ options.scope.request_methods = [

| Key | Type | Default | Description |
|-----|------|---------|-------------|
| parser.env | list | `[]` | Optional environment variables mapped into each parseJob (see: https://kubernetes.io/docs/tasks/inject-data-application/define-environment-variable-container/) |
| parser.image.repository | string | `"docker.io/securecodebox/parser-angularjs-csti-scanner"` | Parser image repository |
| parser.image.tag | string | defaults to the charts version | Parser image tag |
| parser.ttlSecondsAfterFinished | string | `nil` | seconds after which the kubernetes job for the parser will be deleted. Requires the Kubernetes TTLAfterFinished controller: https://kubernetes.io/docs/concepts/workloads/controllers/ttlafterfinished/ |
Expand Down
1 change: 1 addition & 0 deletions scanners/angularjs-csti-scanner/docs/README.ArtifactHub.md
Original file line number Diff line number Diff line change
Expand Up @@ -173,6 +173,7 @@ options.scope.request_methods = [

| Key | Type | Default | Description |
|-----|------|---------|-------------|
| parser.env | list | `[]` | Optional environment variables mapped into each parseJob (see: https://kubernetes.io/docs/tasks/inject-data-application/define-environment-variable-container/) |
| parser.image.repository | string | `"docker.io/securecodebox/parser-angularjs-csti-scanner"` | Parser image repository |
| parser.image.tag | string | defaults to the charts version | Parser image tag |
| parser.ttlSecondsAfterFinished | string | `nil` | seconds after which the kubernetes job for the parser will be deleted. Requires the Kubernetes TTLAfterFinished controller: https://kubernetes.io/docs/concepts/workloads/controllers/ttlafterfinished/ |
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -9,3 +9,5 @@ metadata:
spec:
image: "{{ .Values.parser.image.repository }}:{{ .Values.parser.image.tag | default .Chart.Version }}"
ttlSecondsAfterFinished: {{ .Values.parser.ttlSecondsAfterFinished }}
env:
{{- toYaml .Values.parser.env | nindent 4 }}
2 changes: 2 additions & 0 deletions scanners/angularjs-csti-scanner/values.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -11,6 +11,8 @@ parser:
tag: null
# parser.ttlSecondsAfterFinished -- seconds after which the kubernetes job for the parser will be deleted. Requires the Kubernetes TTLAfterFinished controller: https://kubernetes.io/docs/concepts/workloads/controllers/ttlafterfinished/
ttlSecondsAfterFinished: null
# parser.env -- Optional environment variables mapped into each parseJob (see: https://kubernetes.io/docs/tasks/inject-data-application/define-environment-variable-container/)
env: []

scanner:
image:
Expand Down
1 change: 1 addition & 0 deletions scanners/git-repo-scanner/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -97,6 +97,7 @@ Kubernetes: `>=v1.11.0-0`

| Key | Type | Default | Description |
|-----|------|---------|-------------|
| parser.env | list | `[]` | Optional environment variables mapped into each parseJob (see: https://kubernetes.io/docs/tasks/inject-data-application/define-environment-variable-container/) |
| parser.image.repository | string | `"docker.io/securecodebox/parser-git-repo-scanner"` | Parser image repository |
| parser.image.tag | string | defaults to the charts version | Parser image tag |
| parser.ttlSecondsAfterFinished | string | `nil` | seconds after which the kubernetes job for the parser will be deleted. Requires the Kubernetes TTLAfterFinished controller: https://kubernetes.io/docs/concepts/workloads/controllers/ttlafterfinished/ |
Expand Down
1 change: 1 addition & 0 deletions scanners/git-repo-scanner/docs/README.ArtifactHub.md
Original file line number Diff line number Diff line change
Expand Up @@ -104,6 +104,7 @@ Kubernetes: `>=v1.11.0-0`

| Key | Type | Default | Description |
|-----|------|---------|-------------|
| parser.env | list | `[]` | Optional environment variables mapped into each parseJob (see: https://kubernetes.io/docs/tasks/inject-data-application/define-environment-variable-container/) |
| parser.image.repository | string | `"docker.io/securecodebox/parser-git-repo-scanner"` | Parser image repository |
| parser.image.tag | string | defaults to the charts version | Parser image tag |
| parser.ttlSecondsAfterFinished | string | `nil` | seconds after which the kubernetes job for the parser will be deleted. Requires the Kubernetes TTLAfterFinished controller: https://kubernetes.io/docs/concepts/workloads/controllers/ttlafterfinished/ |
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -9,3 +9,5 @@ metadata:
spec:
image: "{{ .Values.parser.image.repository }}:{{ .Values.parser.image.tag | default .Chart.Version }}"
ttlSecondsAfterFinished: {{ .Values.parser.ttlSecondsAfterFinished }}
env:
{{- toYaml .Values.parser.env | nindent 4 }}
2 changes: 2 additions & 0 deletions scanners/git-repo-scanner/values.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -13,6 +13,8 @@ parser:

# parser.ttlSecondsAfterFinished -- seconds after which the kubernetes job for the parser will be deleted. Requires the Kubernetes TTLAfterFinished controller: https://kubernetes.io/docs/concepts/workloads/controllers/ttlafterfinished/
ttlSecondsAfterFinished: null
# parser.env -- Optional environment variables mapped into each parseJob (see: https://kubernetes.io/docs/tasks/inject-data-application/define-environment-variable-container/)
env: []

scanner:
image:
Expand Down
1 change: 1 addition & 0 deletions scanners/gitleaks/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -162,6 +162,7 @@ For more information on how to use cascades take a look at
| Key | Type | Default | Description |
|-----|------|---------|-------------|
| cascadingRules.enabled | bool | `true` | Enables or disables the installation of the default cascading rules for this scanner |
| parser.env | list | `[]` | Optional environment variables mapped into each parseJob (see: https://kubernetes.io/docs/tasks/inject-data-application/define-environment-variable-container/) |
| parser.image.repository | string | `"docker.io/securecodebox/parser-gitleaks"` | Parser image repository |
| parser.image.tag | string | defaults to the charts version | Parser image tag |
| parser.ttlSecondsAfterFinished | string | `nil` | seconds after which the kubernetes job for the parser will be deleted. Requires the Kubernetes TTLAfterFinished controller: https://kubernetes.io/docs/concepts/workloads/controllers/ttlafterfinished/ |
Expand Down
1 change: 1 addition & 0 deletions scanners/gitleaks/docs/README.ArtifactHub.md
Original file line number Diff line number Diff line change
Expand Up @@ -167,6 +167,7 @@ For more information on how to use cascades take a look at
| Key | Type | Default | Description |
|-----|------|---------|-------------|
| cascadingRules.enabled | bool | `true` | Enables or disables the installation of the default cascading rules for this scanner |
| parser.env | list | `[]` | Optional environment variables mapped into each parseJob (see: https://kubernetes.io/docs/tasks/inject-data-application/define-environment-variable-container/) |
| parser.image.repository | string | `"docker.io/securecodebox/parser-gitleaks"` | Parser image repository |
| parser.image.tag | string | defaults to the charts version | Parser image tag |
| parser.ttlSecondsAfterFinished | string | `nil` | seconds after which the kubernetes job for the parser will be deleted. Requires the Kubernetes TTLAfterFinished controller: https://kubernetes.io/docs/concepts/workloads/controllers/ttlafterfinished/ |
Expand Down
2 changes: 2 additions & 0 deletions scanners/gitleaks/templates/gitleaks-parse-definition.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -9,3 +9,5 @@ metadata:
spec:
image: "{{ .Values.parser.image.repository }}:{{ .Values.parser.image.tag | default .Chart.Version }}"
ttlSecondsAfterFinished: {{ .Values.parser.ttlSecondsAfterFinished }}
env:
{{- toYaml .Values.parser.env | nindent 4 }}
2 changes: 2 additions & 0 deletions scanners/gitleaks/values.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -12,6 +12,8 @@ parser:
tag: null
# parser.ttlSecondsAfterFinished -- seconds after which the kubernetes job for the parser will be deleted. Requires the Kubernetes TTLAfterFinished controller: https://kubernetes.io/docs/concepts/workloads/controllers/ttlafterfinished/
ttlSecondsAfterFinished: null
# parser.env -- Optional environment variables mapped into each parseJob (see: https://kubernetes.io/docs/tasks/inject-data-application/define-environment-variable-container/)
env: []

scanner:
image:
Expand Down
1 change: 1 addition & 0 deletions scanners/kube-hunter/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -63,6 +63,7 @@ Kubernetes: `>=v1.11.0-0`
| Key | Type | Default | Description |
|-----|------|---------|-------------|
| cascadingRules.enabled | bool | `true` | Enables or disables the installation of the default cascading rules for this scanner |
| parser.env | list | `[]` | Optional environment variables mapped into each parseJob (see: https://kubernetes.io/docs/tasks/inject-data-application/define-environment-variable-container/) |
| parser.image.repository | string | `"docker.io/securecodebox/parser-kube-hunter"` | Parser image repository |
| parser.image.tag | string | defaults to the charts version | Parser image tag |
| parser.ttlSecondsAfterFinished | string | `nil` | seconds after which the kubernetes job for the parser will be deleted. Requires the Kubernetes TTLAfterFinished controller: https://kubernetes.io/docs/concepts/workloads/controllers/ttlafterfinished/ |
Expand Down
1 change: 1 addition & 0 deletions scanners/kube-hunter/docs/README.ArtifactHub.md
Original file line number Diff line number Diff line change
Expand Up @@ -70,6 +70,7 @@ Kubernetes: `>=v1.11.0-0`
| Key | Type | Default | Description |
|-----|------|---------|-------------|
| cascadingRules.enabled | bool | `true` | Enables or disables the installation of the default cascading rules for this scanner |
| parser.env | list | `[]` | Optional environment variables mapped into each parseJob (see: https://kubernetes.io/docs/tasks/inject-data-application/define-environment-variable-container/) |
| parser.image.repository | string | `"docker.io/securecodebox/parser-kube-hunter"` | Parser image repository |
| parser.image.tag | string | defaults to the charts version | Parser image tag |
| parser.ttlSecondsAfterFinished | string | `nil` | seconds after which the kubernetes job for the parser will be deleted. Requires the Kubernetes TTLAfterFinished controller: https://kubernetes.io/docs/concepts/workloads/controllers/ttlafterfinished/ |
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -9,3 +9,5 @@ metadata:
spec:
image: "{{ .Values.parser.image.repository }}:{{ .Values.parser.image.tag | default .Chart.Version }}"
ttlSecondsAfterFinished: {{ .Values.parser.image.ttlSecondsAfterFinished }}
env:
{{- toYaml .Values.parser.env | nindent 4 }}
2 changes: 2 additions & 0 deletions scanners/kube-hunter/values.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -12,6 +12,8 @@ parser:

# parser.ttlSecondsAfterFinished -- seconds after which the kubernetes job for the parser will be deleted. Requires the Kubernetes TTLAfterFinished controller: https://kubernetes.io/docs/concepts/workloads/controllers/ttlafterfinished/
ttlSecondsAfterFinished: null
# parser.env -- Optional environment variables mapped into each parseJob (see: https://kubernetes.io/docs/tasks/inject-data-application/define-environment-variable-container/)
env: []

scanner:
image:
Expand Down
1 change: 1 addition & 0 deletions scanners/kubeaudit/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -66,6 +66,7 @@ Kubernetes: `>=v1.11.0-0`
| Key | Type | Default | Description |
|-----|------|---------|-------------|
| kubeauditScope | string | `"namespace"` | Automatically sets up rbac roles for kubeaudit to access the resources it scans. Can be either "cluster" (ClusterRole) or "namespace" (Role) |
| parser.env | list | `[]` | Optional environment variables mapped into each parseJob (see: https://kubernetes.io/docs/tasks/inject-data-application/define-environment-variable-container/) |
| parser.image.repository | string | `"docker.io/securecodebox/parser-kubeaudit"` | Parser image repository |
| parser.image.tag | string | defaults to the charts version | Parser image tag |
| parser.ttlSecondsAfterFinished | string | `nil` | seconds after which the kubernetes job for the parser will be deleted. Requires the Kubernetes TTLAfterFinished controller: https://kubernetes.io/docs/concepts/workloads/controllers/ttlafterfinished/ |
Expand Down
1 change: 1 addition & 0 deletions scanners/kubeaudit/docs/README.ArtifactHub.md
Original file line number Diff line number Diff line change
Expand Up @@ -73,6 +73,7 @@ Kubernetes: `>=v1.11.0-0`
| Key | Type | Default | Description |
|-----|------|---------|-------------|
| kubeauditScope | string | `"namespace"` | Automatically sets up rbac roles for kubeaudit to access the resources it scans. Can be either "cluster" (ClusterRole) or "namespace" (Role) |
| parser.env | list | `[]` | Optional environment variables mapped into each parseJob (see: https://kubernetes.io/docs/tasks/inject-data-application/define-environment-variable-container/) |
| parser.image.repository | string | `"docker.io/securecodebox/parser-kubeaudit"` | Parser image repository |
| parser.image.tag | string | defaults to the charts version | Parser image tag |
| parser.ttlSecondsAfterFinished | string | `nil` | seconds after which the kubernetes job for the parser will be deleted. Requires the Kubernetes TTLAfterFinished controller: https://kubernetes.io/docs/concepts/workloads/controllers/ttlafterfinished/ |
Expand Down
2 changes: 2 additions & 0 deletions scanners/kubeaudit/templates/kubeaudit-parse-definition.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -9,3 +9,5 @@ metadata:
spec:
image: "{{ .Values.parser.image.repository }}:{{ .Values.parser.image.tag | default .Chart.Version }}"
ttlSecondsAfterFinished: {{ .Values.parser.ttlSecondsAfterFinished }}
env:
{{- toYaml .Values.parser.env | nindent 4 }}
2 changes: 2 additions & 0 deletions scanners/kubeaudit/values.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -13,6 +13,8 @@ parser:

# parser.ttlSecondsAfterFinished -- seconds after which the kubernetes job for the parser will be deleted. Requires the Kubernetes TTLAfterFinished controller: https://kubernetes.io/docs/concepts/workloads/controllers/ttlafterfinished/
ttlSecondsAfterFinished: null
# parser.env -- Optional environment variables mapped into each parseJob (see: https://kubernetes.io/docs/tasks/inject-data-application/define-environment-variable-container/)
env: []

scanner:
# scanner.nameAppend -- append a string to the default scantype name.
Expand Down
1 change: 1 addition & 0 deletions scanners/ncrack/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -211,6 +211,7 @@ helm delete ncrack
| cascadingRules.enabled | bool | `true` | Enables or disables the installation of the default cascading rules for this scanner |
| encryptPasswords.existingSecret | string | `nil` | secret name with a pem encoded rsa public key to encrypt identified passwords |
| encryptPasswords.key | string | `"public.key"` | name of the property in the secret with the pem encoded rsa public key |
| parser.env | list | `[]` | Optional environment variables mapped into each parseJob (see: https://kubernetes.io/docs/tasks/inject-data-application/define-environment-variable-container/) |
| parser.image.repository | string | `"docker.io/securecodebox/parser-ncrack"` | Parser image repository |
| parser.image.tag | string | defaults to the charts version | Parser image tag |
| parser.ttlSecondsAfterFinished | string | `nil` | seconds after which the kubernetes job for the parser will be deleted. Requires the Kubernetes TTLAfterFinished controller: https://kubernetes.io/docs/concepts/workloads/controllers/ttlafterfinished/ |
Expand Down
1 change: 1 addition & 0 deletions scanners/ncrack/docs/README.ArtifactHub.md
Original file line number Diff line number Diff line change
Expand Up @@ -218,6 +218,7 @@ helm delete ncrack
| cascadingRules.enabled | bool | `true` | Enables or disables the installation of the default cascading rules for this scanner |
| encryptPasswords.existingSecret | string | `nil` | secret name with a pem encoded rsa public key to encrypt identified passwords |
| encryptPasswords.key | string | `"public.key"` | name of the property in the secret with the pem encoded rsa public key |
| parser.env | list | `[]` | Optional environment variables mapped into each parseJob (see: https://kubernetes.io/docs/tasks/inject-data-application/define-environment-variable-container/) |
| parser.image.repository | string | `"docker.io/securecodebox/parser-ncrack"` | Parser image repository |
| parser.image.tag | string | defaults to the charts version | Parser image tag |
| parser.ttlSecondsAfterFinished | string | `nil` | seconds after which the kubernetes job for the parser will be deleted. Requires the Kubernetes TTLAfterFinished controller: https://kubernetes.io/docs/concepts/workloads/controllers/ttlafterfinished/ |
Expand Down
14 changes: 2 additions & 12 deletions scanners/ncrack/templates/ncrack-parse-definition.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -9,15 +9,5 @@ metadata:
spec:
image: "{{ .Values.parser.image.repository }}:{{ .Values.parser.image.tag | default .Chart.Version }}"
ttlSecondsAfterFinished: {{ .Values.parser.image.ttlSecondsAfterFinished }}
{{- if .Values.encryptPasswords.existingSecret }}
volumes:
- name: "ncrack-secret"
secret:
secretName: {{ .Values.encryptPasswords.existingSecret }}
volumeMounts:
- name: "ncrack-secret"
mountPath: "/secrets/"
env:
- name: "ENCRYPTION_KEY_LOCATION"
value: "/secrets/{{ .Values.encryptPasswords.key }}"
{{- end }}
env:
{{- toYaml .Values.parser.env | nindent 4 }}
2 changes: 2 additions & 0 deletions scanners/ncrack/values.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -17,6 +17,8 @@ parser:
tag: null
# parser.ttlSecondsAfterFinished -- seconds after which the kubernetes job for the parser will be deleted. Requires the Kubernetes TTLAfterFinished controller: https://kubernetes.io/docs/concepts/workloads/controllers/ttlafterfinished/
ttlSecondsAfterFinished: null
# parser.env -- Optional environment variables mapped into each parseJob (see: https://kubernetes.io/docs/tasks/inject-data-application/define-environment-variable-container/)
env: []

scanner:
image:
Expand Down
1 change: 1 addition & 0 deletions scanners/nikto/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -82,6 +82,7 @@ Kubernetes: `>=v1.11.0-0`
| Key | Type | Default | Description |
|-----|------|---------|-------------|
| cascadingRules.enabled | bool | `true` | Enables or disables the installation of the default cascading rules for this scanner |
| parser.env | list | `[]` | Optional environment variables mapped into each parseJob (see: https://kubernetes.io/docs/tasks/inject-data-application/define-environment-variable-container/) |
| parser.image.repository | string | `"docker.io/securecodebox/parser-nikto"` | Parser image repository |
| parser.image.tag | string | defaults to the charts version | Parser image tag |
| parser.ttlSecondsAfterFinished | string | `nil` | seconds after which the kubernetes job for the parser will be deleted. Requires the Kubernetes TTLAfterFinished controller: https://kubernetes.io/docs/concepts/workloads/controllers/ttlafterfinished/ |
Expand Down
1 change: 1 addition & 0 deletions scanners/nikto/docs/README.ArtifactHub.md
Original file line number Diff line number Diff line change
Expand Up @@ -87,6 +87,7 @@ Kubernetes: `>=v1.11.0-0`
| Key | Type | Default | Description |
|-----|------|---------|-------------|
| cascadingRules.enabled | bool | `true` | Enables or disables the installation of the default cascading rules for this scanner |
| parser.env | list | `[]` | Optional environment variables mapped into each parseJob (see: https://kubernetes.io/docs/tasks/inject-data-application/define-environment-variable-container/) |
| parser.image.repository | string | `"docker.io/securecodebox/parser-nikto"` | Parser image repository |
| parser.image.tag | string | defaults to the charts version | Parser image tag |
| parser.ttlSecondsAfterFinished | string | `nil` | seconds after which the kubernetes job for the parser will be deleted. Requires the Kubernetes TTLAfterFinished controller: https://kubernetes.io/docs/concepts/workloads/controllers/ttlafterfinished/ |
Expand Down
2 changes: 2 additions & 0 deletions scanners/nikto/templates/nikto-parse-definition.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -9,3 +9,5 @@ metadata:
spec:
image: "{{ .Values.parser.image.repository }}:{{ .Values.parser.image.tag | default .Chart.Version }}"
ttlSecondsAfterFinished: {{ .Values.parser.ttlSecondsAfterFinished }}
env:
{{- toYaml .Values.parser.env | nindent 4 }}
Loading