Skip to content

Commit

Permalink
Update image location & change operator deployment apiVersion (#22)
Browse files Browse the repository at this point in the history
* Update base image to vernemq/vernemq

* make operator deployment v1 instead of v1beta since in k8s 1.16 the apis have changed

* all Deployments api/v1beta2 -> apps/v1

* undo apiVersion change for node-exporter-daemonset
  • Loading branch information
kushagharahi committed Feb 14, 2021
1 parent b06ea91 commit 37f75f8
Show file tree
Hide file tree
Showing 9 changed files with 9 additions and 9 deletions.
2 changes: 1 addition & 1 deletion docs/getting-started.md
Expand Up @@ -195,5 +195,5 @@ spec:
# Add fields here
size: 3
tag: latest-alpine
baseImage: vernemq/docker-vernemq
baseImage: vernemq/vernemq
```
2 changes: 1 addition & 1 deletion examples/only_vernemq/0vernemq-operator-deployment.yaml
@@ -1,4 +1,4 @@
apiVersion: apps/v1beta2
apiVersion: apps/v1
kind: Deployment
metadata:
labels:
Expand Down
2 changes: 1 addition & 1 deletion examples/only_vernemq/vernemq-vernemq.yaml
Expand Up @@ -6,7 +6,7 @@ metadata:
name: k8s
namespace: messaging
spec:
baseImage: erlio/docker-vernemq
baseImage: vernemq/vernemq
config:
configs:
- name: allow_register_during_netsplit
Expand Down
@@ -1,4 +1,4 @@
apiVersion: apps/v1beta2
apiVersion: apps/v1
kind: Deployment
metadata:
labels:
Expand Down
@@ -1,4 +1,4 @@
apiVersion: apps/v1beta2
apiVersion: apps/v1
kind: Deployment
metadata:
labels:
Expand Down
@@ -1,4 +1,4 @@
apiVersion: apps/v1beta2
apiVersion: apps/v1
kind: Deployment
metadata:
labels:
Expand Down
@@ -1,4 +1,4 @@
apiVersion: apps/v1beta2
apiVersion: apps/v1
kind: Deployment
metadata:
labels:
Expand Down
2 changes: 1 addition & 1 deletion examples/vernemq_grafana_prometheus/o_vernemq-vernemq.yaml
Expand Up @@ -6,7 +6,7 @@ metadata:
name: k8s
namespace: messaging
spec:
baseImage: erlio/docker-vernemq
baseImage: vernemq/vernemq
config:
configs:
- name: allow_register_during_netsplit
Expand Down
2 changes: 1 addition & 1 deletion jsonnet/vmq-operator/vernemq.libsonnet
Expand Up @@ -43,7 +43,7 @@ local k = import 'ksonnet/ksonnet.beta.3/k.libsonnet';
},

imageRepos+:: {
vernemq: 'erlio/docker-vernemq',
vernemq: 'vernemq/vernemq',
},


Expand Down

0 comments on commit 37f75f8

Please sign in to comment.