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

[k8up] Update to v2.0.0 #354

Closed
wants to merge 6 commits into from
Closed
Show file tree
Hide file tree
Changes from 1 commit
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
5 changes: 2 additions & 3 deletions appuio/k8up/Chart.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -6,11 +6,10 @@ keywords:
- backup
- operator
- restic
version: 1.1.0
appVersion: v1.2.0
version: 1.2.0
appVersion: v2.0.0
sources:
- https://github.com/vshn/k8up
- https://github.com/vshn/wrestic
maintainers:
- name: APPUiO Team
email: [email protected]
18 changes: 6 additions & 12 deletions appuio/k8up/README.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
# k8up

![Version: 1.1.0](https://img.shields.io/badge/Version-1.1.0-informational?style=flat-square) ![AppVersion: v1.2.0](https://img.shields.io/badge/AppVersion-v1.2.0-informational?style=flat-square)
![Version: 1.1.0](https://img.shields.io/badge/Version-1.1.0-informational?style=flat-square) ![AppVersion: v2.0.0](https://img.shields.io/badge/AppVersion-v2.0.0-informational?style=flat-square)

Kubernetes and OpenShift Backup Operator based on restic

Expand All @@ -14,9 +14,9 @@ helm install k8up appuio/k8up
```
```bash
# Install CRDs for K8s >= 1.16:
kubectl apply -f https://github.com/vshn/k8up/releases/download/v1.2.0/k8up-crd.yaml
kubectl apply -f https://github.com/vshn/k8up/releases/download/v2.0.0/k8up-crd.yaml
# Install CRDs for K8s <= 1.15 (e.g. OpenShift 3.11):
kubectl apply -f https://github.com/vshn/k8up/releases/download/v1.2.0/k8up-crd-legacy.yaml
kubectl apply -f https://github.com/vshn/k8up/releases/download/v2.0.0/k8up-crd-legacy.yaml
```

<!---
Expand All @@ -33,7 +33,6 @@ Edit the README.gotmpl.md template instead.
## Source Code

* <https://github.com/vshn/k8up>
* <https://github.com/vshn/wrestic>

<!---
The values below are generated with helm-docs!
Expand All @@ -48,10 +47,10 @@ Document your changes in values.yaml and let `make docs:helm` generate this sect
| image.pullPolicy | string | `"IfNotPresent"` | Operator image pull policy |
| image.registry | string | `"quay.io"` | Operator image registry |
| image.repository | string | `"vshn/k8up"` | Operator image repository |
| image.tag | string | `"v1.2.0"` | Operator image tag (version) |
| image.tag | string | `"v2.0.0"` | Operator image tag (version) |
| imagePullSecrets | list | `[]` | |
| k8up.backupImage.repository | string | `"quay.io/vshn/wrestic"` | The backup runner image repository |
| k8up.backupImage.tag | string | `"v0.3.2"` | The backup runner image tag |
| k8up.backupImage.repository | string | `"quay.io/vshn/k8up"` | The backup runner image repository |
| k8up.backupImage.tag | string | `"v2.0.0"` | The backup runner image tag |
| k8up.enableLeaderElection | bool | `true` | Specifies whether leader election should be enabled. Disable this for K8s versions < 1.16 |
| k8up.envVars | list | `[]` | envVars allows the specification of additional environment variables. See [values.yaml](values.yaml) how to specify See documentation which variables are supported. |
| k8up.globalResources | object | empty values | Specify the resource requests and limits that the Pods should have when they are scheduled by K8up. You are still able to override those via K8up resources, but this gives cluster administrators custom defaults. |
Expand Down Expand Up @@ -96,11 +95,6 @@ Document your changes in values.yaml and let `make docs:helm` generate this sect
* Note: Deployment strategy type has changed from `Recreate` to `RollingUpdate`.
* CRDs need to be installed separately, they are no longer included in this chart.

## Source Code

* <https://github.com/vshn/k8up>
* <https://github.com/vshn/wrestic>

<!---
Common/Useful Link references from values.yaml
-->
Expand Down
2 changes: 1 addition & 1 deletion appuio/k8up/rbac-kustomize/kustomization.yaml
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
resources:
- github.com/vshn/k8up/config/rbac?ref=v1.2.0
- github.com/vshn/k8up/config/rbac?ref=v2.0.0

namePrefix: PREFIX-
namespace: "{{ .Release.Namespace }}"
Expand Down
6 changes: 3 additions & 3 deletions appuio/k8up/values.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ image:
# -- Operator image repository
repository: vshn/k8up
# -- Operator image tag (version)
tag: v1.2.0
tag: v2.0.0

imagePullSecrets: []
serviceAccount:
Expand All @@ -33,9 +33,9 @@ k8up:

backupImage:
# -- The backup runner image repository
repository: quay.io/vshn/wrestic
repository: quay.io/vshn/k8up
# -- The backup runner image tag
tag: v0.3.2
tag: v2.0.0

# -- Specifies the timezone K8up is using for scheduling.
# Empty value defaults to the timezone in which Kubernetes is deployed.
Expand Down