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

[bitnami/kubeapps] Set ociCatalog.enabled=true by default #31093

Open
wants to merge 5 commits into
base: main
Choose a base branch
from
Open
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
9 changes: 7 additions & 2 deletions bitnami/kubeapps/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,8 +1,13 @@
# Changelog

## 17.1.1 (2024-12-24)
## 17.2.0 (2024-12-24)

* [bitnami/kubeapps] Release 17.1.1 ([#31153](https://github.com/bitnami/charts/pull/31153))
* [bitnami/kubeapps] Set ociCatalog.enabled=true by default ([#31093](https://github.com/bitnami/charts/pull/31093))

## <small>17.1.1 (2024-12-24)</small>

* [bitnami/*] Fix typo in README (#31052) ([b41a51d](https://github.com/bitnami/charts/commit/b41a51d1bd04841fc108b78d3b8357a5292771c8)), closes [#31052](https://github.com/bitnami/charts/issues/31052)
* [bitnami/kubeapps] Release 17.1.1 (#31153) ([1229341](https://github.com/bitnami/charts/commit/12293419b20d4194dc3095d7ef2ec6974eb41bf9)), closes [#31153](https://github.com/bitnami/charts/issues/31153)

## 17.1.0 (2024-12-10)

Expand Down
2 changes: 1 addition & 1 deletion bitnami/kubeapps/Chart.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -52,4 +52,4 @@ maintainers:
name: kubeapps
sources:
- https://github.com/bitnami/charts/tree/main/bitnami/kubeapps
version: 17.1.1
version: 17.2.0
2 changes: 1 addition & 1 deletion bitnami/kubeapps/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -708,7 +708,7 @@ In the first two cases, it is needed a certificate and a key. We would expect th

| Name | Description | Value |
| -------------------------------------------------------------- | --------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | -------------------------------------- |
| `ociCatalog.enabled` | Enable the OCI catalog gRPC service for cataloging | `false` |
| `ociCatalog.enabled` | Enable the OCI catalog gRPC service for cataloging | `true` |
| `ociCatalog.image.registry` | OCI Catalog image registry | `REGISTRY_NAME` |
| `ociCatalog.image.repository` | OCI Catalog image repository | `REPOSITORY_NAME/kubeapps-oci-catalog` |
| `ociCatalog.image.digest` | OCI Catalog image digest in the way sha256:aa.... Please note this parameter, if set, will override the tag | `""` |
Expand Down
6 changes: 3 additions & 3 deletions bitnami/kubeapps/templates/kubeappsapis/deployment.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -197,7 +197,7 @@ spec:
{{- else if .Values.kubeappsapis.readinessProbe.enabled }}
readinessProbe: {{- include "common.tplvalues.render" (dict "value" (omit .Values.kubeappsapis.readinessProbe "enabled") "context" $) | nindent 12 }}
exec:
command: ["grpc_health_probe", "-addr=:{{ .Values.kubeappsapis.containerPorts.http }}"]
command: ["grpc-health-probe", "-addr=:{{ .Values.kubeappsapis.containerPorts.http }}"]
{{- end }}
{{- if .Values.kubeappsapis.customStartupProbe }}
startupProbe: {{- include "common.tplvalues.render" (dict "value" .Values.kubeappsapis.customStartupProbe "context" $) | nindent 12 }}
Expand Down Expand Up @@ -249,7 +249,7 @@ spec:
command: {{- include "common.tplvalues.render" (dict "value" .Values.ociCatalog.command "context" $) | nindent 12 }}
{{- else }}
command:
- /oci-catalog
- oci-catalog
{{- end }}
{{- if .Values.diagnosticMode.enabled }}
args: {{- include "common.tplvalues.render" (dict "value" .Values.diagnosticMode.args "context" $) | nindent 12 }}
Expand Down Expand Up @@ -297,7 +297,7 @@ spec:
{{- else if .Values.ociCatalog.readinessProbe.enabled }}
readinessProbe: {{- include "common.tplvalues.render" (dict "value" (omit .Values.ociCatalog.readinessProbe "enabled") "context" $) | nindent 12 }}
exec:
command: ["grpc_health_probe", "-addr=:{{ .Values.ociCatalog.containerPorts.grpc }}"]
command: ["grpc-health-probe", "-addr=:{{ .Values.ociCatalog.containerPorts.grpc }}"]
{{- end }}
{{- if .Values.ociCatalog.customStartupProbe }}
startupProbe: {{- include "common.tplvalues.render" (dict "value" .Values.ociCatalog.customStartupProbe "context" $) | nindent 12 }}
Expand Down
2 changes: 1 addition & 1 deletion bitnami/kubeapps/values.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -2258,7 +2258,7 @@ kubeappsapis:
ociCatalog:
## @param ociCatalog.enabled Enable the OCI catalog gRPC service for cataloging
## OCI repositories
enabled: false
enabled: true
## Bitnami Kubeapps OCI Catalog image
## ref: https://hub.docker.com/r/bitnami/kubeapps-ocicatalog/
## @param ociCatalog.image.registry [default: REGISTRY_NAME] OCI Catalog image registry
Expand Down
Loading