Skip to content

Commit 0836b0c

Browse files
committed
fix(helm): Typo in description of digests
1 parent fb49ecd commit 0836b0c

File tree

3 files changed

+6
-6
lines changed

3 files changed

+6
-6
lines changed

helm/defectdojo/README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -674,11 +674,11 @@ A Helm chart for Kubernetes to install DefectDojo
674674
| host | string | `"defectdojo.default.minikube.local"` | Primary hostname of instance |
675675
| imagePullPolicy | string | `"Always"` | |
676676
| imagePullSecrets | string | `nil` | When using a private registry, name of the secret that holds the registry secret (eg deploy token from gitlab-ci project) Create secrets as: kubectl create secret docker-registry defectdojoregistrykey --docker-username=registry_username --docker-password=registry_password --docker-server='https://index.docker.io/v1/' |
677-
| images.django.image.digest | string | `""` | Prefix "sha@" is expected in this place |
677+
| images.django.image.digest | string | `""` | Prefix "sha256:" is expected in this place |
678678
| images.django.image.registry | string | `""` | |
679679
| images.django.image.repository | string | `"defectdojo/defectdojo-django"` | |
680680
| images.django.image.tag | string | `""` | If empty, use appVersion. Another possible values are: latest, X.X.X, X.X.X-debian, X.X.X-alpine (where X.X.X is version of DD). For dev builds (only for testing purposes): nightly-dev, nightly-dev-debian, nightly-dev-alpine. To see all, check https://hub.docker.com/r/defectdojo/defectdojo-django/tags. |
681-
| images.nginx.image.digest | string | `""` | Prefix "sha@" is expected in this place |
681+
| images.nginx.image.digest | string | `""` | Prefix "sha256:" is expected in this place |
682682
| images.nginx.image.registry | string | `""` | |
683683
| images.nginx.image.repository | string | `"defectdojo/defectdojo-nginx"` | |
684684
| images.nginx.image.tag | string | `""` | If empty, use appVersion. Another possible values are: latest, X.X.X, X.X.X-alpine (where X.X.X is version of DD). For dev builds (only for testing purposes): nightly-dev, nightly-dev-alpine. To see all, check https://hub.docker.com/r/defectdojo/defectdojo-nginx/tags. |

helm/defectdojo/values.schema.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -865,7 +865,7 @@
865865
"type": "object",
866866
"properties": {
867867
"digest": {
868-
"description": "Prefix \"sha@\" is expected in this place",
868+
"description": "Prefix \"sha256:\" is expected in this place",
869869
"type": "string"
870870
},
871871
"registry": {
@@ -889,7 +889,7 @@
889889
"type": "object",
890890
"properties": {
891891
"digest": {
892-
"description": "Prefix \"sha@\" is expected in this place",
892+
"description": "Prefix \"sha256:\" is expected in this place",
893893
"type": "string"
894894
},
895895
"registry": {

helm/defectdojo/values.yaml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -37,7 +37,7 @@ images:
3737
# For dev builds (only for testing purposes): nightly-dev, nightly-dev-debian, nightly-dev-alpine.
3838
# To see all, check https://hub.docker.com/r/defectdojo/defectdojo-django/tags.
3939
tag: ""
40-
# -- Prefix "sha@" is expected in this place
40+
# -- Prefix "sha256:" is expected in this place
4141
digest: ""
4242
nginx:
4343
image:
@@ -48,7 +48,7 @@ images:
4848
# For dev builds (only for testing purposes): nightly-dev, nightly-dev-alpine.
4949
# To see all, check https://hub.docker.com/r/defectdojo/defectdojo-nginx/tags.
5050
tag: ""
51-
# -- Prefix "sha@" is expected in this place
51+
# -- Prefix "sha256:" is expected in this place
5252
digest: ""
5353

5454
# -- Enables application network policy

0 commit comments

Comments
 (0)