Skip to content

Commit be0c77f

Browse files
authored
Use nonroot image from APPUiO
Use nonroot image from APPUiO
2 parents 9143234 + 0c5806e commit be0c77f

File tree

3 files changed

+5
-4
lines changed

3 files changed

+5
-4
lines changed

class/defaults.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -26,5 +26,5 @@ parameters:
2626
memory: 512Mi
2727
images:
2828
maxscale:
29-
image: docker.io/mariadb/maxscale
30-
tag: 2.5.15
29+
image: gchr.io/appuio/maxscale-docker
30+
tag: 6.1.3

component/main.jsonnet

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -55,8 +55,7 @@ local deployment = kube.Deployment('maxscale') {
5555
spec+: {
5656
containers_+: {
5757
maxscale: kube.Container('maxscale') {
58-
image: params.images.maxscale.image + ':' + params.images.maxscale.tag
59-
,
58+
image: params.images.maxscale.image + ':' + params.images.maxscale.tag,
6059
env_+: std.prune(com.proxyVars {
6160
MASTER_ONLY_LISTEN_ADDRESS: params.master_only_listen_address,
6261
READ_WRITE_LISTEN_ADDRESS: params.read_write_listen_address,

tests/defaults.yml

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,8 @@
44
---
55
parameters:
66
_instance: maxscale
7+
facts:
8+
distribution: openshift4
79
maxscale:
810
namespace: maxscale-test
911
master_only_listen_address: 127.0.0.1

0 commit comments

Comments
 (0)