Skip to content

Commit 7e31fea

Browse files
authored
[release] Update references to release version (#218)
1 parent e653bba commit 7e31fea

File tree

6 files changed

+8
-9
lines changed

6 files changed

+8
-9
lines changed

Makefile

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,6 @@
11
PROJECT_NAME := m3db-operator
22
OUTPUT_DIR := out
33
DOCS_OUT_DIR := site
4-
DEP_VERSION := v0.6.0
54
.DEFAULT_GOAL := all
65

76
SELF_DIR := $(dir $(lastword $(MAKEFILE_LIST)))

README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -50,7 +50,7 @@ helm install m3db/m3db-operator --namespace m3db-operator
5050
With `kubectl` (will install in the `default` namespace):
5151

5252
```
53-
kubectl apply -f https://raw.githubusercontent.com/m3db/m3db-operator/v0.6.0/bundle.yaml
53+
kubectl apply -f https://raw.githubusercontent.com/m3db/m3db-operator/v0.7.0/bundle.yaml
5454
```
5555

5656
## Managing Clusters
@@ -60,7 +60,7 @@ kubectl apply -f https://raw.githubusercontent.com/m3db/m3db-operator/v0.6.0/bun
6060
Create a simple etcd cluster to store M3DB's topology:
6161

6262
```
63-
kubectl apply -f https://raw.githubusercontent.com/m3db/m3db-operator/v0.6.0/example/etcd/etcd-basic.yaml
63+
kubectl apply -f https://raw.githubusercontent.com/m3db/m3db-operator/v0.7.0/example/etcd/etcd-basic.yaml
6464
```
6565

6666
Apply manifest with your zones specified for isolation groups:

bundle.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -80,7 +80,7 @@ spec:
8080
runAsGroup: 65534
8181
containers:
8282
- name: m3db-operator
83-
image: quay.io/m3db/m3db-operator:v0.6.0
83+
image: quay.io/m3db/m3db-operator:v0.7.0
8484
command:
8585
- m3db-operator
8686
imagePullPolicy: Always

docs/getting_started/create_cluster.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ clusters, see the docs on [node affinity][node-affinity].
1313

1414
Create an etcd cluster with persistent volumes:
1515
```
16-
kubectl apply -f https://raw.githubusercontent.com/m3db/m3db-operator/v0.6.0/example/etcd/etcd-pd.yaml
16+
kubectl apply -f https://raw.githubusercontent.com/m3db/m3db-operator/v0.7.0/example/etcd/etcd-pd.yaml
1717
```
1818

1919
We recommend modifying the `storageClassName` in the manifest to one that matches your cloud provider's fastest remote
@@ -84,7 +84,7 @@ available, this will create a cluster that will not use persistent storage and w
8484
the pods die:
8585
8686
```
87-
kubectl apply -f https://raw.githubusercontent.com/m3db/m3db-operator/v0.6.0/example/etcd/etcd-basic.yaml
87+
kubectl apply -f https://raw.githubusercontent.com/m3db/m3db-operator/v0.7.0/example/etcd/etcd-basic.yaml
8888

8989
# Verify etcd health once pods available
9090
kubectl exec etcd-0 -- env ETCDCTL_API=3 etcdctl endpoint health
@@ -94,7 +94,7 @@ kubectl exec etcd-0 -- env ETCDCTL_API=3 etcdctl endpoint health
9494
If you have remote storage available and would like to jump straight to using it, apply the following manifest for etcd
9595
instead:
9696
```
97-
kubectl apply -f https://raw.githubusercontent.com/m3db/m3db-operator/v0.6.0/example/etcd/etcd-pd.yaml
97+
kubectl apply -f https://raw.githubusercontent.com/m3db/m3db-operator/v0.7.0/example/etcd/etcd-pd.yaml
9898
```
9999

100100
### M3DB

helm/m3db-operator/Chart.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
apiVersion: v1
22
name: m3db-operator
3-
version: 0.6.0
3+
version: 0.7.0
44
# TODO(PS) - helm has issues with GKE's SemVer
55
# Error: Chart requires kubernetesVersion: >=1.10.6 which is incompatible with Kubernetes v1.10.7-gke.2
66
#

helm/m3db-operator/values.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,5 +2,5 @@ operator:
22
name: m3db-operator
33
image:
44
repository: quay.io/m3db/m3db-operator
5-
tag: v0.6.0
5+
tag: v0.7.0
66
environment: production

0 commit comments

Comments
 (0)