Skip to content
This repository was archived by the owner on Oct 22, 2024. It is now read-only.

Commit 9a98a39

Browse files
committed
v0.7.0
New release with - operator - scheduler extensions - etc. The URL for the operator YAML in docs/install.md was updated manually, the rest of the changes are from hack/set-version.sh.
1 parent a7bae0c commit 9a98a39

29 files changed

+72
-72
lines changed

Makefile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -37,7 +37,7 @@ NO_PROXY=$(shell echo "$${NO_PROXY:-$${no_proxy}},$$(ip addr | grep inet6 | grep
3737
export HTTP_PROXY HTTPS_PROXY NO_PROXY
3838

3939
REGISTRY_NAME?=$(shell . test/test-config.sh && echo $${TEST_BUILD_PMEM_REGISTRY})
40-
IMAGE_VERSION?=canary
40+
IMAGE_VERSION?=v0.7.0
4141
IMAGE_TAG=$(REGISTRY_NAME)/pmem-csi-driver$*:$(IMAGE_VERSION)
4242
# Pass proxy config via --build-arg only if these are set,
4343
# enabling proxy config other way, like ~/.docker/config.json

deploy/common/pmem-app-cache.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ spec:
2424
topologyKey: "kubernetes.io/hostname"
2525
containers:
2626
- name: my-frontend
27-
image: intel/pmem-csi-driver-test:canary
27+
image: intel/pmem-csi-driver-test:v0.7.0
2828
command: [ "/bin/sh" ]
2929
args: [ "-c", "touch /data/$(POD_NAME); sleep 100000" ]
3030
env:

deploy/common/pmem-app-ephemeral.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ metadata:
77
spec:
88
containers:
99
- name: my-frontend
10-
image: intel/pmem-csi-driver-test:canary
10+
image: intel/pmem-csi-driver-test:v0.7.0
1111
command: [ "sleep", "100000" ]
1212
volumeMounts:
1313
- mountPath: "/data"

deploy/common/pmem-app-late-binding.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ metadata:
55
spec:
66
containers:
77
- name: my-frontend
8-
image: intel/pmem-csi-driver-test:canary
8+
image: intel/pmem-csi-driver-test:v0.7.0
99
command: [ "sleep", "100000" ]
1010
volumeMounts:
1111
- mountPath: "/data"

deploy/common/pmem-app.yaml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ metadata:
55
spec:
66
containers:
77
- name: my-frontend
8-
image: intel/pmem-csi-driver-test:canary
8+
image: intel/pmem-csi-driver-test:v0.7.0
99
command: [ "sleep", "100000" ]
1010
volumeMounts:
1111
- mountPath: "/data"
@@ -22,7 +22,7 @@ metadata:
2222
spec:
2323
containers:
2424
- name: my-frontend
25-
image: intel/pmem-csi-driver-test:canary
25+
image: intel/pmem-csi-driver-test:v0.7.0
2626
command: [ "sleep", "100000" ]
2727
volumeMounts:
2828
- mountPath: "/data"

deploy/common/pmem-kata-app-ephemeral.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ spec:
1111
katacontainers.io/kata-runtime: "true"
1212
containers:
1313
- name: my-frontend
14-
image: intel/pmem-csi-driver-test:canary
14+
image: intel/pmem-csi-driver-test:v0.7.0
1515
command: [ "sleep", "100000" ]
1616
volumeMounts:
1717
- mountPath: "/data"

deploy/common/pmem-kata-app.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ spec:
1111
katacontainers.io/kata-runtime: "true"
1212
containers:
1313
- name: my-frontend
14-
image: intel/pmem-csi-driver-test:canary
14+
image: intel/pmem-csi-driver-test:v0.7.0
1515
command: [ "sleep", "100000" ]
1616
volumeMounts:
1717
- mountPath: "/data"

deploy/kubernetes-1.15/direct/pmem-csi.yaml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -228,7 +228,7 @@ spec:
228228
value: /tmp/termination-log
229229
- name: PMEM_CSI_DRIVER_NAME
230230
value: pmem-csi.intel.com
231-
image: intel/pmem-csi-driver:canary
231+
image: intel/pmem-csi-driver:v0.7.0
232232
imagePullPolicy: IfNotPresent
233233
name: pmem-driver
234234
securityContext:
@@ -317,7 +317,7 @@ spec:
317317
value: pmem-csi.intel.com
318318
- name: TERMINATION_LOG_PATH
319319
value: /tmp/termination-log
320-
image: intel/pmem-csi-driver:canary
320+
image: intel/pmem-csi-driver:v0.7.0
321321
imagePullPolicy: IfNotPresent
322322
name: pmem-driver
323323
securityContext:

deploy/kubernetes-1.15/direct/testing/pmem-csi.yaml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -246,7 +246,7 @@ spec:
246246
value: /tmp/termination-log
247247
- name: PMEM_CSI_DRIVER_NAME
248248
value: pmem-csi.intel.com
249-
image: intel/pmem-csi-driver-test:canary
249+
image: intel/pmem-csi-driver-test:v0.7.0
250250
imagePullPolicy: IfNotPresent
251251
name: pmem-driver
252252
securityContext:
@@ -291,7 +291,7 @@ spec:
291291
- -R
292292
- pmem-csi:pmem-csi
293293
- /var/lib/pmem-csi-coverage
294-
image: intel/pmem-csi-driver-test:canary
294+
image: intel/pmem-csi-driver-test:v0.7.0
295295
imagePullPolicy: Always
296296
name: coverage-init
297297
securityContext:
@@ -368,7 +368,7 @@ spec:
368368
value: pmem-csi.intel.com
369369
- name: TERMINATION_LOG_PATH
370370
value: /tmp/termination-log
371-
image: intel/pmem-csi-driver-test:canary
371+
image: intel/pmem-csi-driver-test:v0.7.0
372372
imagePullPolicy: IfNotPresent
373373
name: pmem-driver
374374
securityContext:

deploy/kubernetes-1.15/lvm/pmem-csi.yaml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -228,7 +228,7 @@ spec:
228228
value: /tmp/termination-log
229229
- name: PMEM_CSI_DRIVER_NAME
230230
value: pmem-csi.intel.com
231-
image: intel/pmem-csi-driver:canary
231+
image: intel/pmem-csi-driver:v0.7.0
232232
imagePullPolicy: IfNotPresent
233233
name: pmem-driver
234234
securityContext:
@@ -317,7 +317,7 @@ spec:
317317
value: pmem-csi.intel.com
318318
- name: TERMINATION_LOG_PATH
319319
value: /tmp/termination-log
320-
image: intel/pmem-csi-driver:canary
320+
image: intel/pmem-csi-driver:v0.7.0
321321
imagePullPolicy: IfNotPresent
322322
name: pmem-driver
323323
securityContext:
@@ -364,7 +364,7 @@ spec:
364364
env:
365365
- name: TERMINATION_LOG_PATH
366366
value: /tmp/pmem-ns-init-termination-log
367-
image: intel/pmem-csi-driver:canary
367+
image: intel/pmem-csi-driver:v0.7.0
368368
imagePullPolicy: IfNotPresent
369369
name: pmem-ns-init
370370
securityContext:
@@ -380,7 +380,7 @@ spec:
380380
env:
381381
- name: TERMINATION_LOG_PATH
382382
value: /tmp/pmem-vgm-termination-log
383-
image: intel/pmem-csi-driver:canary
383+
image: intel/pmem-csi-driver:v0.7.0
384384
imagePullPolicy: IfNotPresent
385385
name: pmem-vgm
386386
securityContext:

0 commit comments

Comments
 (0)