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

K8SPSMDB-1107 - Update psmdb-db and psmdb-operator charts for 1.16.1 release #340

Merged
merged 2 commits into from
Jun 24, 2024
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
4 changes: 2 additions & 2 deletions charts/psmdb-db/Chart.yaml
Original file line number Diff line number Diff line change
@@ -1,9 +1,9 @@
apiVersion: v2
appVersion: "1.16.0"
appVersion: "1.16.1"
description: A Helm chart for installing Percona Server MongoDB Cluster Databases using the PSMDB Operator.
name: psmdb-db
home: https://www.percona.com/doc/kubernetes-operator-for-psmongodb/index.html
version: 1.16.1
version: 1.16.2
maintainers:
- name: tplavcic
email: [email protected]
Expand Down
6 changes: 3 additions & 3 deletions charts/psmdb-db/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ Useful links:

## Pre-requisites
* Percona Operator for MongoDB running in your Kubernetes cluster. See installation details [here](https://github.com/percona/percona-helm-charts/blob/main/charts/psmdb-operator) or in the [Operator Documentation](https://www.percona.com/doc/kubernetes-operator-for-psmongodb/helm.html).
* Kubernetes 1.25+
* Kubernetes 1.26+
* Helm v3

# Chart Details
Expand All @@ -19,14 +19,14 @@ To install the chart with the `psmdb` release name using a dedicated namespace (

```sh
helm repo add percona https://percona.github.io/percona-helm-charts/
helm install my-db percona/psmdb-db --version 1.16.0 --namespace my-namespace
helm install my-db percona/psmdb-db --version 1.16.1 --namespace my-namespace
```

The chart can be customized using the following configurable parameters:

| Parameter | Description | Default |
| ------------------------------- | ------------------------------------------------------------------------------|---------------------------------------|
| `crVersion` | CR Cluster Manifest version | `1.16.0` |
| `crVersion` | CR Cluster Manifest version | `1.16.1` |
| `pause` | Stop PSMDB Database safely | `false` |
| `unmanaged` | Start cluster and don't manage it (cross cluster replication) | `false` |
| `unsafeFlags.tls` | Allows users from configuring a cluster without TLS/SSL certificates | `false` |
Expand Down
2 changes: 1 addition & 1 deletion charts/psmdb-db/values.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ finalizers:
nameOverride: ""
fullnameOverride: ""

crVersion: 1.16.0
crVersion: 1.16.1
pause: false
unmanaged: false
unsafeFlags:
Expand Down
4 changes: 2 additions & 2 deletions charts/psmdb-operator/Chart.yaml
Original file line number Diff line number Diff line change
@@ -1,9 +1,9 @@
apiVersion: v2
appVersion: "1.16.0"
appVersion: "1.16.1"
description: A Helm chart for deploying the Percona Operator for MongoDB
name: psmdb-operator
home: https://docs.percona.com/percona-operator-for-mongodb/
version: 1.16.1
version: 1.16.2
maintainers:
- name: tplavcic
email: [email protected]
Expand Down
6 changes: 3 additions & 3 deletions charts/psmdb-operator/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ Useful links:
- [Operator Documentation](https://www.percona.com/doc/kubernetes-operator-for-psmongodb/index.html)

## Pre-requisites
* Kubernetes 1.25+
* Kubernetes 1.26+
* Helm v3

# Installation
Expand All @@ -19,15 +19,15 @@ To install the chart with the `psmdb` release name using a dedicated namespace (

```sh
helm repo add percona https://percona.github.io/percona-helm-charts/
helm install my-operator percona/psmdb-operator --version 1.16.0 --namespace my-namespace
helm install my-operator percona/psmdb-operator --version 1.16.1 --namespace my-namespace
```

The chart can be customized using the following configurable parameters:

| Parameter | Description | Default |
| ------------------------------- | ------------------------------------------------------------------------------| ------------------------------------------|
| `image.repository` | PSMDB Operator Container image name | `percona/percona-server-mongodb-operator` |
| `image.tag` | PSMDB Operator Container image tag | `1.16.0` |
| `image.tag` | PSMDB Operator Container image tag | `1.16.1` |
| `image.pullPolicy` | PSMDB Operator Container pull policy | `Always` |
| `image.pullSecrets` | PSMDB Operator Pod pull secret | `[]` |
| `replicaCount` | PSMDB Operator Pod quantity | `1` |
Expand Down
2 changes: 1 addition & 1 deletion charts/psmdb-operator/values.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ replicaCount: 1

image:
repository: percona/percona-server-mongodb-operator
tag: 1.16.0
tag: 1.16.1
pullPolicy: IfNotPresent

# disableTelemetry: according to
Expand Down
Loading