Skip to content

Commit

Permalink
Merge pull request kubernetes-sigs#781 from tam7t/tam7t/v1-instructions
Browse files Browse the repository at this point in the history
docs: update docs for v1.0.0 and CRD version upgrades
  • Loading branch information
k8s-ci-robot authored Oct 14, 2021
2 parents 7a027a8 + dc25e24 commit 91cd35b
Show file tree
Hide file tree
Showing 4 changed files with 23 additions and 18 deletions.
4 changes: 2 additions & 2 deletions docs/book/src/concepts.md
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,7 @@ The `SecretProviderClass` is a namespaced resource in Secrets Store CSI Driver t
`SecretProviderClass` custom resource should have the following components:

```yaml
apiVersion: secrets-store.csi.x-k8s.io/v1alpha1
apiVersion: secrets-store.csi.x-k8s.io/v1
kind: SecretProviderClass
metadata:
name: my-provider
Expand Down Expand Up @@ -99,7 +99,7 @@ The `SecretProviderClassPodStatus` is created by the CSI driver in the same name
Here is an example of a `SecretProviderClassPodStatus` resource:

```yaml
apiVersion: secrets-store.csi.x-k8s.io/v1alpha1
apiVersion: secrets-store.csi.x-k8s.io/v1
kind: SecretProviderClassPodStatus
metadata:
creationTimestamp: "2021-01-21T19:20:11Z"
Expand Down
33 changes: 19 additions & 14 deletions docs/book/src/getting-started/upgrades.md
Original file line number Diff line number Diff line change
@@ -1,7 +1,24 @@
# Upgrades

<aside class="note warning">
<h1>Warning</h1>
This page includes instructions for upgrading the driver to the latest version.

```bash
helm upgrade csi-secrets-store secrets-store-csi-driver/secrets-store-csi-driver --namespace=NAMESPACE
```

Set `NAMESPACE` to the same namespace where the driver was originally installed,
(i.e. `kube-system`)

If you are upgrading from one of the following versions there may be additional
steps that you should take.

## pre `v1.0.0`

Versions `v1.0.0-rc.1` and later use the `v1` version of the `SecretProviderClass` and `SecretProviderClassPodStatus`
`CustomResourceDefinition`s. `secrets-store.csi.x-k8s.io/v1alpha1` versioned `CRD`s will continue to work, but consider
updating your YAMLs to `secrets-store.csi.x-k8s.io/v1`.

## pre `v0.3.0`

The helm chart repository URL has changed to `https://kubernetes-sigs.github.io/secrets-store-csi-driver/charts`.

Expand All @@ -15,18 +32,6 @@ helm repo update

</aside>

This page includes instructions for upgrading the driver to the latest version.

```bash
helm upgrade csi-secrets-store secrets-store-csi-driver/secrets-store-csi-driver --namespace=NAMESPACE
```

Set `NAMESPACE` to the same namespace where the driver was originally installed,
(i.e. `kube-system`)

If you are upgrading from one of the following versions there may be additional
steps that you should take.

## pre `v0.1.0`

>**NOTE**: [CustomResourceDefinitions](https://kubernetes.io/docs/concepts/extend-kubernetes/api-extension/custom-resources/) (CRDs) have been moved from `templates` to `crds` directory in the helm charts. To manage the lifecycle of the CRDs during install/upgrade, helm `pre-install` and `pre-upgrade` hook has been added. This hook will create a pod that runs only on **linux** nodes and deploys the CRDs in the Kubernetes cluster.
Expand Down
2 changes: 1 addition & 1 deletion docs/book/src/getting-started/usage.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ To use the Secrets Store CSI driver, create a `SecretProviderClass` custom resou
A `SecretProviderClass` custom resource should have the following components:

```yaml
apiVersion: secrets-store.csi.x-k8s.io/v1alpha1
apiVersion: secrets-store.csi.x-k8s.io/v1
kind: SecretProviderClass
metadata:
name: my-provider
Expand Down
2 changes: 1 addition & 1 deletion docs/book/src/topics/sync-as-kubernetes-secret.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
- `SecretProviderClass`

```yaml
apiVersion: secrets-store.csi.x-k8s.io/v1alpha1
apiVersion: secrets-store.csi.x-k8s.io/v1
kind: SecretProviderClass
metadata:
name: azure-sync
Expand Down

0 comments on commit 91cd35b

Please sign in to comment.