Skip to content

Commit

Permalink
New release
Browse files Browse the repository at this point in the history
Signed-off-by: Justin Lamp <justin.lamp@netways.de>
  • Loading branch information
modzilla99 committed Sep 16, 2022
1 parent e948dd1 commit e447d9c
Show file tree
Hide file tree
Showing 8 changed files with 14 additions and 9 deletions.
5 changes: 5 additions & 0 deletions CHANGELOG.md
@@ -1,3 +1,8 @@
# v1.5.0
- Rebase on Fedora 36
- Upgrade Ganesha to 4.0.8
- Switch to new repo for dbus

# v1.0.8
- Add mountOptions StorageClass parameter (#84) (see [Usage](./docs/usage.md) for complete SC parameter info)
- Replace root-squash argument with a rootSquash SC parameter (#86) (see [Usage](./docs/usage.md) for complete SC parameter info)
Expand Down
4 changes: 2 additions & 2 deletions charts/nfs-server-provisioner/Chart.yaml
@@ -1,8 +1,8 @@
apiVersion: v1
appVersion: 3.0.0
appVersion: 4.0.0
description: nfs-server-provisioner is an out-of-tree dynamic provisioner for Kubernetes. You can use it to quickly & easily deploy shared storage that works almost anywhere.
name: nfs-server-provisioner
version: 1.4.0
version: 1.5.0
maintainers:
- name: kiall
email: kiall@macinnes.ie
Expand Down
4 changes: 2 additions & 2 deletions charts/nfs-server-provisioner/README.md
Expand Up @@ -57,8 +57,8 @@ their default values.
|:-------------------------------|:----------------------------------------------------------------------------------------------------------------|:---------------------------------------------------------|
| `extraArgs` | [Additional command line arguments](https://github.com/kubernetes-incubator/external-storage/blob/HEAD/nfs/docs/deployment.md#arguments) | `{}`
| `imagePullSecrets` | Specify image pull secrets | `nil` (does not add image pull secrets to deployed pods) |
| `image.repository` | The image repository to pull from | `k8s.gcr.io/sig-storage/nfs-provisioner:v3.0.0` |
| `image.tag` | The image tag to pull | `v3.0.0` |
| `image.repository` | The image repository to pull from | `k8s.gcr.io/sig-storage/nfs-provisioner:v4.0.0` |
| `image.tag` | The image tag to pull | `v4.0.0` |
| `image.digest` | The image digest to pull, this option has precedence over `image.tag` | `nil` |
| `image.pullPolicy` | Image pull policy | `IfNotPresent` |
| `service.type` | service type | `ClusterIP` |
Expand Down
2 changes: 1 addition & 1 deletion charts/nfs-server-provisioner/values.yaml
Expand Up @@ -8,7 +8,7 @@ replicaCount: 1

image:
repository: k8s.gcr.io/sig-storage/nfs-provisioner
tag: v3.0.0
tag: v4.0.0
# digest:
pullPolicy: IfNotPresent

Expand Down
2 changes: 1 addition & 1 deletion deploy/kubernetes/deployment.yaml
Expand Up @@ -63,7 +63,7 @@ spec:
serviceAccount: nfs-provisioner
containers:
- name: nfs-provisioner
image: k8s.gcr.io/sig-storage/nfs-provisioner:v3.0.0
image: k8s.gcr.io/sig-storage/nfs-provisioner:v4.0.0
ports:
- name: nfs
containerPort: 2049
Expand Down
2 changes: 1 addition & 1 deletion deploy/kubernetes/pod.yaml
Expand Up @@ -11,7 +11,7 @@ spec:
serviceAccount: nfs-provisioner
containers:
- name: nfs-provisioner
image: k8s.gcr.io/sig-storage/nfs-provisioner:v3.0.0
image: k8s.gcr.io/sig-storage/nfs-provisioner:v4.0.0
ports:
- name: nfs
containerPort: 2049
Expand Down
2 changes: 1 addition & 1 deletion deploy/kubernetes/statefulset.yaml
Expand Up @@ -63,7 +63,7 @@ spec:
terminationGracePeriodSeconds: 10
containers:
- name: nfs-provisioner
image: k8s.gcr.io/sig-storage/nfs-provisioner:v3.0.0
image: k8s.gcr.io/sig-storage/nfs-provisioner:v4.0.0
ports:
- name: nfs
containerPort: 2049
Expand Down
2 changes: 1 addition & 1 deletion docs/deployment.md
Expand Up @@ -24,7 +24,7 @@ $ make container
If you are running in Kubernetes, it will pull the image from GCR for you. Or you can do it yourself.

```
$ docker pull k8s.gcr.io/sig-storage/nfs-provisioner:v3.0.0
$ docker pull k8s.gcr.io/sig-storage/nfs-provisioner:v4.0.0
```

## Deploying the provisioner
Expand Down

0 comments on commit e447d9c

Please sign in to comment.