Skip to content

Commit 8188d3a

Browse files
committed
Add disableIPv6 switch and try to fix auth for test7a
1 parent 37f3184 commit 8188d3a

File tree

9 files changed

+14
-1
lines changed

9 files changed

+14
-1
lines changed

tests/acceptance/semiautomation/activefailover.yaml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,7 @@ metadata:
55
spec:
66
environment: @ENVIRONMENT@
77
image: @IMAGE@
8+
disableIPv6: @DISABLEIPV6@
89
externalAccess:
910
type: LoadBalancer
1011
mode: ActiveFailover

tests/acceptance/semiautomation/cluster-local-storage.yaml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,7 @@ metadata:
55
spec:
66
environment: @ENVIRONMENT@
77
image: @IMAGE@
8+
disableIPv6: @DISABLEIPV6@
89
externalAccess:
910
type: LoadBalancer
1011
mode: Cluster

tests/acceptance/semiautomation/cluster-sync.yaml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,7 @@ metadata:
55
spec:
66
environment: @ENVIRONMENT@
77
image: @IMAGE@
8+
disableIPv6: @DISABLEIPV6@
89
externalAccess:
910
type: LoadBalancer
1011
mode: Cluster

tests/acceptance/semiautomation/cluster-sync1.yaml

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,7 @@ metadata:
55
spec:
66
environment: @ENVIRONMENT@
77
image: @IMAGE@
8+
disableIPv6: @DISABLEIPV6@
89
externalAccess:
910
type: LoadBalancer
1011
mode: Cluster
@@ -13,3 +14,4 @@ spec:
1314
externalAccess:
1415
type: LoadBalancer
1516
accessPackageSecretNames: ["src-accesspackage"]
17+
masterEndpoint: ["https://src-sync.9hoeffer.de:8629"]

tests/acceptance/semiautomation/cluster-sync2.yaml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,7 @@ metadata:
55
spec:
66
environment: @ENVIRONMENT@
77
image: @IMAGE@
8+
disableIPv6: @DISABLEIPV6@
89
externalAccess:
910
type: LoadBalancer
1011
mode: Cluster

tests/acceptance/semiautomation/cluster.yaml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,7 @@ metadata:
55
spec:
66
environment: @ENVIRONMENT@
77
image: @IMAGE@
8+
disableIPv6: @DISABLEIPV6@
89
externalAccess:
910
type: LoadBalancer
1011
mode: Cluster

tests/acceptance/semiautomation/helper.fish

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -100,6 +100,11 @@ function patchYamlFile
100100
cp "$YAMLFILE" "$RESULT"
101101
sed -i "s|@IMAGE@|$IMAGE|" "$RESULT"
102102
sed -i "s|@ENVIRONMENT@|$ENVIRONMENT|" "$RESULT"
103+
if test -z "$DISABLEIPV6"
104+
sed -i "s|@DISABLEIPV6@|false|" "$RESULT"
105+
else
106+
sed -i "s|@DISABLEIPV6@|true|" "$RESULT"
107+
end
103108
end
104109

105110
function checkImages

tests/acceptance/semiautomation/replication.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ metadata:
44
name: "replication-internal"
55
spec:
66
source:
7-
masterEndpoint: ["https://@ADDRESS@:8629"]
7+
masterEndpoint: ["https://src-sync.9hoeffer.de:8629"]
88
auth:
99
keyfileSecretName: src-accesspackage-auth
1010
tls:

tests/acceptance/semiautomation/single.yaml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,7 @@ metadata:
55
spec:
66
environment: @ENVIRONMENT@
77
image: @IMAGE@
8+
disableIPv6: @DISABLEIPV6@
89
externalAccess:
910
type: LoadBalancer
1011
mode: Single

0 commit comments

Comments
 (0)