Skip to content

Commit

Permalink
Add disableIPv6 switch and try to fix auth for test7a
Browse files Browse the repository at this point in the history
  • Loading branch information
neunhoef committed Nov 6, 2018
1 parent 37f3184 commit 8188d3a
Show file tree
Hide file tree
Showing 9 changed files with 14 additions and 1 deletion.
1 change: 1 addition & 0 deletions tests/acceptance/semiautomation/activefailover.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,7 @@ metadata:
spec:
environment: @ENVIRONMENT@
image: @IMAGE@
disableIPv6: @DISABLEIPV6@
externalAccess:
type: LoadBalancer
mode: ActiveFailover
1 change: 1 addition & 0 deletions tests/acceptance/semiautomation/cluster-local-storage.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,7 @@ metadata:
spec:
environment: @ENVIRONMENT@
image: @IMAGE@
disableIPv6: @DISABLEIPV6@
externalAccess:
type: LoadBalancer
mode: Cluster
Expand Down
1 change: 1 addition & 0 deletions tests/acceptance/semiautomation/cluster-sync.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,7 @@ metadata:
spec:
environment: @ENVIRONMENT@
image: @IMAGE@
disableIPv6: @DISABLEIPV6@
externalAccess:
type: LoadBalancer
mode: Cluster
Expand Down
2 changes: 2 additions & 0 deletions tests/acceptance/semiautomation/cluster-sync1.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,7 @@ metadata:
spec:
environment: @ENVIRONMENT@
image: @IMAGE@
disableIPv6: @DISABLEIPV6@
externalAccess:
type: LoadBalancer
mode: Cluster
Expand All @@ -13,3 +14,4 @@ spec:
externalAccess:
type: LoadBalancer
accessPackageSecretNames: ["src-accesspackage"]
masterEndpoint: ["https://src-sync.9hoeffer.de:8629"]
1 change: 1 addition & 0 deletions tests/acceptance/semiautomation/cluster-sync2.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,7 @@ metadata:
spec:
environment: @ENVIRONMENT@
image: @IMAGE@
disableIPv6: @DISABLEIPV6@
externalAccess:
type: LoadBalancer
mode: Cluster
Expand Down
1 change: 1 addition & 0 deletions tests/acceptance/semiautomation/cluster.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,7 @@ metadata:
spec:
environment: @ENVIRONMENT@
image: @IMAGE@
disableIPv6: @DISABLEIPV6@
externalAccess:
type: LoadBalancer
mode: Cluster
5 changes: 5 additions & 0 deletions tests/acceptance/semiautomation/helper.fish
Original file line number Diff line number Diff line change
Expand Up @@ -100,6 +100,11 @@ function patchYamlFile
cp "$YAMLFILE" "$RESULT"
sed -i "s|@IMAGE@|$IMAGE|" "$RESULT"
sed -i "s|@ENVIRONMENT@|$ENVIRONMENT|" "$RESULT"
if test -z "$DISABLEIPV6"
sed -i "s|@DISABLEIPV6@|false|" "$RESULT"
else
sed -i "s|@DISABLEIPV6@|true|" "$RESULT"
end
end

function checkImages
Expand Down
2 changes: 1 addition & 1 deletion tests/acceptance/semiautomation/replication.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ metadata:
name: "replication-internal"
spec:
source:
masterEndpoint: ["https://@ADDRESS@:8629"]
masterEndpoint: ["https://src-sync.9hoeffer.de:8629"]
auth:
keyfileSecretName: src-accesspackage-auth
tls:
Expand Down
1 change: 1 addition & 0 deletions tests/acceptance/semiautomation/single.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,7 @@ metadata:
spec:
environment: @ENVIRONMENT@
image: @IMAGE@
disableIPv6: @DISABLEIPV6@
externalAccess:
type: LoadBalancer
mode: Single

0 comments on commit 8188d3a

Please sign in to comment.