Skip to content

Commit

Permalink
change admin port and remove resource version
Browse files Browse the repository at this point in the history
  • Loading branch information
battermann committed Dec 13, 2024
1 parent 80d5ecd commit e55bd61
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
4 changes: 2 additions & 2 deletions charts/integration/templates/configmap.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -69,11 +69,11 @@ data:
rabbitmq-v0:
host: rabbitmq.wire-federation-v0.svc.cluster.local
adminPort: 15671
adminPort: 15672
rabbitmq-v1:
host: rabbitmq.wire-federation-v1.svc.cluster.local
adminPort: 15671
adminPort: 15672
backendTwo:
Expand Down
4 changes: 2 additions & 2 deletions hack/bin/integration-test.sh
Original file line number Diff line number Diff line change
Expand Up @@ -51,8 +51,8 @@ summary() {
}

# Copy the secrets from the wire-federation-v0 namespace to the current namespace to be able to delete RabbitMQ queues that are created by the integration tests to avoid overflows
kubectl -n wire-federation-v0 get secrets rabbitmq -ojson | jq 'del(.metadata.namespace) | .metadata.name="rabbitmq-v0"' | kubectl -n $NAMESPACE apply -f -
kubectl -n wire-federation-v1 get secrets rabbitmq -ojson | jq 'del(.metadata.namespace) | .metadata.name="rabbitmq-v1"' | kubectl -n $NAMESPACE apply -f -
kubectl -n wire-federation-v0 get secrets rabbitmq -ojson | jq 'del(.metadata.namespace) | del(.metadata.resourceVersion) | .metadata.name="rabbitmq-v0"' | kubectl -n $NAMESPACE apply -f -
kubectl -n wire-federation-v1 get secrets rabbitmq -ojson | jq 'del(.metadata.namespace) | del(.metadata.resourceVersion) | .metadata.name="rabbitmq-v1"' | kubectl -n $NAMESPACE apply -f -

# Run tests in parallel using GNU parallel (see https://www.gnu.org/software/parallel/)
# The below commands are a little convoluted, but we wish to:
Expand Down

0 comments on commit e55bd61

Please sign in to comment.