Skip to content

Commit

Permalink
[bitnami/tensorflow-resnet] Detect non-standard images (#30969)
Browse files Browse the repository at this point in the history
* [bitnami/tensorflow-resnet] Detect non-standard images

Signed-off-by: Carlos Rodríguez Hernández <[email protected]>

* Modify NOTES.txt

Signed-off-by: Carlos Rodríguez Hernández <[email protected]>

* Modify values

Signed-off-by: Carlos Rodríguez Hernández <[email protected]>

* Update CHANGELOG.md

Signed-off-by: Bitnami Containers <[email protected]>

* Update README.md with readme-generator-for-helm

Signed-off-by: Bitnami Containers <[email protected]>

---------

Signed-off-by: Carlos Rodríguez Hernández <[email protected]>
Signed-off-by: Bitnami Containers <[email protected]>
Co-authored-by: Bitnami Containers <[email protected]>
  • Loading branch information
Carlos Rodríguez Hernández and bitnami-bot authored Dec 10, 2024
1 parent 423508a commit 65341d4
Show file tree
Hide file tree
Showing 6 changed files with 27 additions and 12 deletions.
8 changes: 6 additions & 2 deletions bitnami/tensorflow-resnet/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,8 +1,12 @@
# Changelog

## 4.2.15 (2024-11-08)
## 4.3.0 (2024-12-10)

* [bitnami/tensorflow-resnet] Unify seLinuxOptions default value ([#30321](https://github.com/bitnami/charts/pull/30321))
* [bitnami/tensorflow-resnet] Detect non-standard images ([#30969](https://github.com/bitnami/charts/pull/30969))

## <small>4.2.15 (2024-11-11)</small>

* [bitnami/tensorflow-resnet] Unify seLinuxOptions default value (#30321) ([e7c7a90](https://github.com/bitnami/charts/commit/e7c7a90baca50093843b502c12f45837ef0a7b6d)), closes [#30321](https://github.com/bitnami/charts/issues/30321)

## <small>4.2.14 (2024-11-01)</small>

Expand Down
6 changes: 3 additions & 3 deletions bitnami/tensorflow-resnet/Chart.lock
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
dependencies:
- name: common
repository: oci://registry-1.docker.io/bitnamicharts
version: 2.26.0
digest: sha256:5ff7837915aef0067bd32271ee2b10c990774c16c4b6fe0a7c5eb6e53530ce08
generated: "2024-10-31T13:54:22.280194805Z"
version: 2.28.0
digest: sha256:5b30f0fa07bb89b01c55fd6258c8ce22a611b13623d4ad83e8fdd1d4490adc74
generated: "2024-12-10T17:30:58.494861+01:00"
2 changes: 1 addition & 1 deletion bitnami/tensorflow-resnet/Chart.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -33,4 +33,4 @@ maintainers:
name: tensorflow-resnet
sources:
- https://github.com/bitnami/charts/tree/main/bitnami/tensorflow-resnet
version: 4.2.15
version: 4.3.0
15 changes: 10 additions & 5 deletions bitnami/tensorflow-resnet/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -77,11 +77,12 @@ As an alternative, you can use any of the preset configurations for pod affinity

### Global parameters

| Name | Description | Value |
| ----------------------------------------------------- | ------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | ------ |
| `global.imageRegistry` | Global Docker image registry | `""` |
| `global.imagePullSecrets` | Global Docker registry secret names as an array | `[]` |
| `global.compatibility.openshift.adaptSecurityContext` | Adapt the securityContext sections of the deployment to make them compatible with Openshift restricted-v2 SCC: remove runAsUser, runAsGroup and fsGroup and let the platform use their allowed default IDs. Possible values: auto (apply if the detected running cluster is Openshift), force (perform the adaptation always), disabled (do not perform adaptation) | `auto` |
| Name | Description | Value |
| ----------------------------------------------------- | ------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | ------- |
| `global.imageRegistry` | Global Docker image registry | `""` |
| `global.imagePullSecrets` | Global Docker registry secret names as an array | `[]` |
| `global.security.allowInsecureImages` | Allows skipping image verification | `false` |
| `global.compatibility.openshift.adaptSecurityContext` | Adapt the securityContext sections of the deployment to make them compatible with Openshift restricted-v2 SCC: remove runAsUser, runAsGroup and fsGroup and let the platform use their allowed default IDs. Possible values: auto (apply if the detected running cluster is Openshift), force (perform the adaptation always), disabled (do not perform adaptation) | `auto` |

### Common parameters

Expand Down Expand Up @@ -232,6 +233,10 @@ Find more information about how to deal with common errors related to Bitnami's

## Upgrading

### To 4.3.0

This version introduces image verification for security purposes. To disable it, set `global.security.allowInsecureImages` to `true`. More details at [GitHub issue](https://github.com/bitnami/charts/issues/30850).

### To 4.0.0

This major bump changes the following security defaults:
Expand Down
3 changes: 2 additions & 1 deletion bitnami/tensorflow-resnet/templates/NOTES.txt
Original file line number Diff line number Diff line change
Expand Up @@ -35,4 +35,5 @@ Did you know there are enterprise versions of the Bitnami catalog? For enhanced

{{ include "tensorflow-resnet.checkRollingTags" . }}
{{- include "common.warnings.resources" (dict "sections" (list "") "context" $) }}
{{- include "common.warnings.modifiedImages" (dict "images" (list .Values.server.image .Values.client.image) "context" $) }}
{{- include "common.warnings.modifiedImages" (dict "images" (list .Values.server.image .Values.client.image) "context" $) }}
{{- include "common.errors.insecureImages" (dict "images" (list .Values.server.image .Values.client.image) "context" $) }}
5 changes: 5 additions & 0 deletions bitnami/tensorflow-resnet/values.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -16,6 +16,11 @@ global:
## - myRegistryKeySecretName
##
imagePullSecrets: []
## Security parameters
##
security:
## @param global.security.allowInsecureImages Allows skipping image verification
allowInsecureImages: false
## Compatibility adaptations for Kubernetes platforms
##
compatibility:
Expand Down

0 comments on commit 65341d4

Please sign in to comment.