Skip to content
This repository has been archived by the owner on Jan 18, 2023. It is now read-only.

Commit

Permalink
Merge pull request #105 from intelsdi-x/release-v0.2.0-rc2
Browse files Browse the repository at this point in the history
Updated version string to v0.2.0-rc2.
  • Loading branch information
ConnorDoyle authored Feb 3, 2017
2 parents c4b140e + a79247b commit b13d898
Show file tree
Hide file tree
Showing 12 changed files with 14 additions and 14 deletions.
2 changes: 1 addition & 1 deletion Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -75,7 +75,7 @@

all: docker

version=v0.2.0-rc1
version=v0.2.0-rc2

docker:
docker build --no-cache -t kcm:$(version) .
Expand Down
2 changes: 1 addition & 1 deletion docs/html/docs/operator.html
Original file line number Diff line number Diff line change
Expand Up @@ -189,7 +189,7 @@ <h3>
<li>The subcommands described below should be run in the same order. </li>
<li>The documentation in this section assumes that the <code>KCM</code> configuration directory is <code>/etc/kcm</code> and the <code>kcm</code>
binary is installed on the host under <code>/opt/bin</code>.</li>
<li>In all the pod templates used in this section, the name of container image used is <code>kcm:v0.2.0-rc1</code>. It is expected that the
<li>In all the pod templates used in this section, the name of container image used is <code>kcm:v0.2.0-rc2</code>. It is expected that the
<code>kcm</code> container image is built and cached locally in the host. The <code>image</code> field will require modification if the
container image is hosted remotely (e.g., in <a href="https://hub.docker.com/">https://hub.docker.com/</a>).</li>
</ul>
Expand Down
2 changes: 1 addition & 1 deletion docs/operator.md
Original file line number Diff line number Diff line change
Expand Up @@ -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/).

Expand Down
2 changes: 1 addition & 1 deletion kcm.py
Original file line number Diff line number Diff line change
Expand Up @@ -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"],
Expand Down
2 changes: 1 addition & 1 deletion resources/pods/kcm-cluster-init-pod.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -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
2 changes: 1 addition & 1 deletion resources/pods/kcm-discover-pod.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -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"
Expand Down
2 changes: 1 addition & 1 deletion resources/pods/kcm-init-pod.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -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"
Expand Down
2 changes: 1 addition & 1 deletion resources/pods/kcm-install-pod.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -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"
Expand Down
6 changes: 3 additions & 3 deletions resources/pods/kcm-isolate-pod.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -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:
Expand All @@ -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"
Expand All @@ -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"
Expand Down
2 changes: 1 addition & 1 deletion resources/pods/kcm-nodereport-daemonset.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -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"
Expand Down
2 changes: 1 addition & 1 deletion resources/pods/kcm-reconcile-daemonset.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -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"
Expand Down
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -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',
Expand Down

0 comments on commit b13d898

Please sign in to comment.