diff --git a/Makefile b/Makefile
index 58a38412..d9acedd6 100644
--- a/Makefile
+++ b/Makefile
@@ -75,7 +75,7 @@
all: docker
-version=v0.2.0-rc1
+version=v0.2.0-rc2
docker:
docker build --no-cache -t kcm:$(version) .
diff --git a/docs/html/docs/operator.html b/docs/html/docs/operator.html
index f9e9cbe8..01fc7fb5 100644
--- a/docs/html/docs/operator.html
+++ b/docs/html/docs/operator.html
@@ -189,7 +189,7 @@
The subcommands described below should be run in the same order.
The documentation in this section assumes that the KCM
configuration directory is /etc/kcm
and the kcm
binary is installed on the host under /opt/bin
.
-In all the pod templates used in this section, the name of container image used is kcm:v0.2.0-rc1
. It is expected that the
+In all the pod templates used in this section, the name of container image used is kcm:v0.2.0-rc2
. It is expected that the
kcm
container image is built and cached locally in the host. The image
field will require modification if the
container image is hosted remotely (e.g., in https://hub.docker.com/).
diff --git a/docs/operator.md b/docs/operator.md
index ae41c126..ae5f33cc 100644
--- a/docs/operator.md
+++ b/docs/operator.md
@@ -157,7 +157,7 @@ for some reason.
- The subcommands described below should be run in the same order.
- The documentation in this section assumes that the `KCM` configuration directory is `/etc/kcm` and the `kcm`
binary is installed on the host under `/opt/bin`.
-- In all the pod templates used in this section, the name of container image used is `kcm:v0.2.0-rc1`. It is expected that the
+- In all the pod templates used in this section, the name of container image used is `kcm:v0.2.0-rc2`. It is expected that the
`kcm` container image is built and cached locally in the host. The `image` field will require modification if the
container image is hosted remotely (e.g., in https://hub.docker.com/).
diff --git a/kcm.py b/kcm.py
index 504d773b..71cff595 100644
--- a/kcm.py
+++ b/kcm.py
@@ -124,7 +124,7 @@
def main():
setup_logging()
- args = docopt(__doc__, version="KCM v0.2.0-rc1")
+ args = docopt(__doc__, version="KCM v0.2.0-rc2")
if args["cluster-init"]:
clusterinit.cluster_init(args["--host-list"], args["--all-hosts"],
args["--kcm-cmd-list"], args["--kcm-img"],
diff --git a/resources/pods/kcm-cluster-init-pod.yaml b/resources/pods/kcm-cluster-init-pod.yaml
index e0a1e7b5..0bb7f138 100644
--- a/resources/pods/kcm-cluster-init-pod.yaml
+++ b/resources/pods/kcm-cluster-init-pod.yaml
@@ -87,6 +87,6 @@ spec:
command:
- "/bin/bash"
- "-c"
- image: kcm:v0.2.0-rc1
+ image: kcm:v0.2.0-rc2
name: kcm-cluster-init-pod
restartPolicy: Never
diff --git a/resources/pods/kcm-discover-pod.yaml b/resources/pods/kcm-discover-pod.yaml
index 1e8c3277..bd9ec155 100644
--- a/resources/pods/kcm-discover-pod.yaml
+++ b/resources/pods/kcm-discover-pod.yaml
@@ -89,7 +89,7 @@ spec:
valueFrom:
fieldRef:
fieldPath: spec.nodeName
- image: kcm:v0.2.0-rc1
+ image: kcm:v0.2.0-rc2
name: kcm-discover-pod
volumeMounts:
- mountPath: "/etc/kcm"
diff --git a/resources/pods/kcm-init-pod.yaml b/resources/pods/kcm-init-pod.yaml
index b36ede58..dc374b4b 100644
--- a/resources/pods/kcm-init-pod.yaml
+++ b/resources/pods/kcm-init-pod.yaml
@@ -91,7 +91,7 @@ spec:
- name: NUM_CP_CORES
# Change this to modify the value passed to `--num-cp-cores` flag.
value: '1'
- image: kcm:v0.2.0-rc1
+ image: kcm:v0.2.0-rc2
name: kcm-init-pod
volumeMounts:
- mountPath: "/etc/kcm"
diff --git a/resources/pods/kcm-install-pod.yaml b/resources/pods/kcm-install-pod.yaml
index e7906a7f..1c6dad8c 100644
--- a/resources/pods/kcm-install-pod.yaml
+++ b/resources/pods/kcm-install-pod.yaml
@@ -84,7 +84,7 @@ spec:
command:
- "/bin/bash"
- "-c"
- image: kcm:v0.2.0-rc1
+ image: kcm:v0.2.0-rc2
name: kcm-install-pod
volumeMounts:
- mountPath: "/opt/bin"
diff --git a/resources/pods/kcm-isolate-pod.yaml b/resources/pods/kcm-isolate-pod.yaml
index ab6b793f..9d6f3adb 100644
--- a/resources/pods/kcm-isolate-pod.yaml
+++ b/resources/pods/kcm-isolate-pod.yaml
@@ -89,7 +89,7 @@ spec:
env:
- name: KCM_PROC_FS
value: "/host/proc"
- image: kcm:v0.2.0-rc1
+ image: kcm:v0.2.0-rc2
name: kcm-isolate-dp
resources:
requests:
@@ -110,7 +110,7 @@ spec:
env:
- name: KCM_PROC_FS
value: "/host/proc"
- image: kcm:v0.2.0-rc1
+ image: kcm:v0.2.0-rc2
name: kcm-isolate-cp
volumeMounts:
- mountPath: "/host/proc"
@@ -128,7 +128,7 @@ spec:
env:
- name: KCM_PROC_FS
value: "/host/proc"
- image: kcm:v0.2.0-rc1
+ image: kcm:v0.2.0-rc2
name: kcm-isolate-infra
volumeMounts:
- mountPath: "/host/proc"
diff --git a/resources/pods/kcm-nodereport-daemonset.yaml b/resources/pods/kcm-nodereport-daemonset.yaml
index ea145cc8..edf29dda 100644
--- a/resources/pods/kcm-nodereport-daemonset.yaml
+++ b/resources/pods/kcm-nodereport-daemonset.yaml
@@ -100,7 +100,7 @@ spec:
valueFrom:
fieldRef:
fieldPath: spec.nodeName
- image: kcm:v0.2.0-rc1
+ image: kcm:v0.2.0-rc2
name: kcm-nodereport
volumeMounts:
- mountPath: "/host/proc"
diff --git a/resources/pods/kcm-reconcile-daemonset.yaml b/resources/pods/kcm-reconcile-daemonset.yaml
index 1f4817c7..51822627 100644
--- a/resources/pods/kcm-reconcile-daemonset.yaml
+++ b/resources/pods/kcm-reconcile-daemonset.yaml
@@ -100,7 +100,7 @@ spec:
valueFrom:
fieldRef:
fieldPath: spec.nodeName
- image: kcm:v0.2.0-rc1
+ image: kcm:v0.2.0-rc2
name: kcm-reconcile
volumeMounts:
- mountPath: "/host/proc"
diff --git a/setup.py b/setup.py
index c5667ccc..87c225ce 100644
--- a/setup.py
+++ b/setup.py
@@ -74,7 +74,7 @@
from setuptools import setup
setup(name='kcm',
- version='0.2.0-rc1',
+ version='0.2.0-rc2',
description='Support minimal comms use cases on Kubernetes',
url='http://github.com/intelsdi-x/kubernetes-comms-mvp',
author='Intel SDI-E',