Skip to content

Commit

Permalink
[bitnami/solr] Detect non-standard images (#30945)
Browse files Browse the repository at this point in the history
* [bitnami/solr] 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]>

* 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
carrodher and bitnami-bot authored Dec 10, 2024
1 parent 936a5de commit be6bbcf
Show file tree
Hide file tree
Showing 6 changed files with 31 additions and 15 deletions.
9 changes: 7 additions & 2 deletions bitnami/solr/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,8 +1,13 @@
# Changelog

## 9.4.8 (2024-11-29)
## 9.5.0 (2024-12-10)

* [bitnami/solr] Release 9.4.8 ([#30678](https://github.com/bitnami/charts/pull/30678))
* [bitnami/solr] Detect non-standard images ([#30945](https://github.com/bitnami/charts/pull/30945))

## <small>9.4.8 (2024-11-29)</small>

* [bitnami/*] docs: :memo: Add "Prometheus metrics" (batch 6) (#30675) ([7b9cd04](https://github.com/bitnami/charts/commit/7b9cd04c2ffc730a0d62da787f2d4967c0ede47c)), closes [#30675](https://github.com/bitnami/charts/issues/30675)
* [bitnami/solr] Release 9.4.8 (#30678) ([5a19c1c](https://github.com/bitnami/charts/commit/5a19c1c49effb32921cf08141efdf0bb0abbeb68)), closes [#30678](https://github.com/bitnami/charts/issues/30678)

## <small>9.4.7 (2024-10-29)</small>

Expand Down
8 changes: 4 additions & 4 deletions bitnami/solr/Chart.lock
Original file line number Diff line number Diff line change
@@ -1,9 +1,9 @@
dependencies:
- name: zookeeper
repository: oci://registry-1.docker.io/bitnamicharts
version: 13.6.0
version: 13.6.1
- name: common
repository: oci://registry-1.docker.io/bitnamicharts
version: 2.27.2
digest: sha256:8112cd5074f9baf67a2e05027462b6a05ef911f7d853fbaa479a0daae8469181
generated: "2024-11-29T01:17:21.356838593Z"
version: 2.28.0
digest: sha256:baec1f58a73706aa14d6e35c0de77bd7db42063f56d0a0f01384680fdddaa818
generated: "2024-12-10T17:29:02.616831+01:00"
2 changes: 1 addition & 1 deletion bitnami/solr/Chart.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -34,4 +34,4 @@ maintainers:
name: solr
sources:
- https://github.com/bitnami/charts/tree/main/bitnami/solr
version: 9.4.8
version: 9.5.0
19 changes: 12 additions & 7 deletions bitnami/solr/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -192,13 +192,14 @@ You can enable this initContainer by setting `volumePermissions.enabled` to `tru

### Global parameters

| Name | Description | Value |
| ----------------------------------------------------- | ------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | ------ |
| `global.imageRegistry` | Global Docker image registry | `""` |
| `global.imagePullSecrets` | Global Docker registry secret names as an array | `[]` |
| `global.defaultStorageClass` | Global default StorageClass for Persistent Volume(s) | `""` |
| `global.storageClass` | DEPRECATED: use global.defaultStorageClass instead | `""` |
| `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.defaultStorageClass` | Global default StorageClass for Persistent Volume(s) | `""` |
| `global.storageClass` | DEPRECATED: use global.defaultStorageClass instead | `""` |
| `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 @@ -542,6 +543,10 @@ Find more information about how to deal with common errors related to Bitnami's

## Upgrading

### To 9.5.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 9.0.3

This version uses solr container image version `9.5.0-debian-12-r7` which removes `HDFS` module due to CVEs found in it.
Expand Down
3 changes: 2 additions & 1 deletion bitnami/solr/templates/NOTES.txt
Original file line number Diff line number Diff line change
Expand Up @@ -76,4 +76,5 @@ Solr Prometheus metrics can be accessed via port {{ .Values.metrics.service.port
{{- include "solr.checkRollingTags" . }}
{{- include "solr.validateValues" . }}
{{- include "common.warnings.resources" (dict "sections" (list "metrics" "" "tls" "volumePermissions") "context" $) }}
{{- include "common.warnings.modifiedImages" (dict "images" (list .Values.image .Values.volumePermissions.image) "context" $) }}
{{- include "common.warnings.modifiedImages" (dict "images" (list .Values.image .Values.volumePermissions.image) "context" $) }}
{{- include "common.errors.insecureImages" (dict "images" (list .Values.image .Values.volumePermissions.image) "context" $) }}
5 changes: 5 additions & 0 deletions bitnami/solr/values.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -21,6 +21,11 @@ global:
imagePullSecrets: []
defaultStorageClass: ""
storageClass: ""
## 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 be6bbcf

Please sign in to comment.