Skip to content

Commit fcadaea

Browse files
committed
Version bump to v1.6.0
Signed-off-by: Justin Lamp <[email protected]>
1 parent 0dc903c commit fcadaea

File tree

9 files changed

+14
-14
lines changed

9 files changed

+14
-14
lines changed

.github/workflows/docker-build.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -47,4 +47,4 @@ jobs:
4747
platforms: linux/amd64,linux/arm64,linux/ppc64le,linux/s390x
4848
push: true
4949
# keep tag in sync with deploy/base/Dockerfile:GANESHA_VERSION
50-
tags: ghcr.io/${{ github.repository_owner }}/nfs-ganesha:V3.5
50+
tags: ghcr.io/${{ github.repository_owner }}/nfs-ganesha:V4.0.8

CHANGELOG.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
# v1.5.0
1+
# v1.6.0
22
- Rebase on Fedora 36
33
- Upgrade Ganesha to 4.0.8
44
- Switch to new repo for dbus

charts/nfs-server-provisioner/Chart.yaml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
11
apiVersion: v1
2-
appVersion: 4.0.0
2+
appVersion: 4.0.8
33
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.
44
name: nfs-server-provisioner
5-
version: 1.5.0
5+
version: 1.6.0
66
maintainers:
77
- name: kiall
88

charts/nfs-server-provisioner/README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -57,8 +57,8 @@ their default values.
5757
|:-------------------------------|:----------------------------------------------------------------------------------------------------------------|:---------------------------------------------------------|
5858
| `extraArgs` | [Additional command line arguments](https://github.com/kubernetes-incubator/external-storage/blob/HEAD/nfs/docs/deployment.md#arguments) | `{}`
5959
| `imagePullSecrets` | Specify image pull secrets | `nil` (does not add image pull secrets to deployed pods) |
60-
| `image.repository` | The image repository to pull from | `k8s.gcr.io/sig-storage/nfs-provisioner:v4.0.0` |
61-
| `image.tag` | The image tag to pull | `v4.0.0` |
60+
| `image.repository` | The image repository to pull from | `k8s.gcr.io/sig-storage/nfs-provisioner:v4.0.8` |
61+
| `image.tag` | The image tag to pull | `v4.0.8` |
6262
| `image.digest` | The image digest to pull, this option has precedence over `image.tag` | `nil` |
6363
| `image.pullPolicy` | Image pull policy | `IfNotPresent` |
6464
| `service.type` | service type | `ClusterIP` |

charts/nfs-server-provisioner/values.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ replicaCount: 1
88

99
image:
1010
repository: k8s.gcr.io/sig-storage/nfs-provisioner
11-
tag: v4.0.0
11+
tag: v4.0.8
1212
# digest:
1313
pullPolicy: IfNotPresent
1414

deploy/kubernetes/deployment.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -63,7 +63,7 @@ spec:
6363
serviceAccount: nfs-provisioner
6464
containers:
6565
- name: nfs-provisioner
66-
image: k8s.gcr.io/sig-storage/nfs-provisioner:v4.0.0
66+
image: k8s.gcr.io/sig-storage/nfs-provisioner:v4.0.8
6767
ports:
6868
- name: nfs
6969
containerPort: 2049

deploy/kubernetes/pod.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ spec:
1111
serviceAccount: nfs-provisioner
1212
containers:
1313
- name: nfs-provisioner
14-
image: k8s.gcr.io/sig-storage/nfs-provisioner:v4.0.0
14+
image: k8s.gcr.io/sig-storage/nfs-provisioner:v4.0.8
1515
ports:
1616
- name: nfs
1717
containerPort: 2049

deploy/kubernetes/statefulset.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -63,7 +63,7 @@ spec:
6363
terminationGracePeriodSeconds: 10
6464
containers:
6565
- name: nfs-provisioner
66-
image: k8s.gcr.io/sig-storage/nfs-provisioner:v4.0.0
66+
image: k8s.gcr.io/sig-storage/nfs-provisioner:v4.0.8
6767
ports:
6868
- name: nfs
6969
containerPort: 2049

docs/deployment.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ $ make container
2424
If you are running in Kubernetes, it will pull the image from GCR for you. Or you can do it yourself.
2525

2626
```
27-
$ docker pull k8s.gcr.io/sig-storage/nfs-provisioner:v4.0.0
27+
$ docker pull k8s.gcr.io/sig-storage/nfs-provisioner:v4.0.8
2828
```
2929

3030
## Deploying the provisioner
@@ -82,15 +82,15 @@ You may want to specify the hostname the NFS server exports from, i.e. the serve
8282
$ docker run --cap-add DAC_READ_SEARCH --cap-add SYS_RESOURCE \
8383
--security-opt seccomp:deploy/docker/nfs-provisioner-seccomp.json \
8484
-v $HOME/.kube:/.kube:Z \
85-
k8s.gcr.io/sig-storage/nfs-provisioner:v4.0.0 \
85+
k8s.gcr.io/sig-storage/nfs-provisioner:v4.0.8 \
8686
-provisioner=example.com/nfs \
8787
-kubeconfig=/.kube/config
8888
```
8989
or
9090
```
9191
$ docker run --cap-add DAC_READ_SEARCH --cap-add SYS_RESOURCE \
9292
--security-opt seccomp:deploy/docker/nfs-provisioner-seccomp.json \
93-
k8s.gcr.io/sig-storage/nfs-provisioner:v4.0.0 \
93+
k8s.gcr.io/sig-storage/nfs-provisioner:v4.0.8 \
9494
-provisioner=example.com/nfs \
9595
-master=http://172.17.0.1:8080
9696
```
@@ -105,7 +105,7 @@ With the two above options, the run command will look something like this.
105105
$ docker run --privileged \
106106
-v $HOME/.kube:/.kube:Z \
107107
-v /xfs:/export:Z \
108-
k8s.gcr.io/sig-storage/nfs-provisioner:v4.0.0 \
108+
k8s.gcr.io/sig-storage/nfs-provisioner:v4.0.8 \
109109
-provisioner=example.com/nfs \
110110
-kubeconfig=/.kube/config \
111111
-enable-xfs-quota=true

0 commit comments

Comments
 (0)