-
Notifications
You must be signed in to change notification settings - Fork 30
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Update expected Json returned from OpenAQ API - Update ActiveMQ Artemis to version v1.0.14 in tests - Use specific ActiveMQ Artemis broker instance in tests - Update ActiveMQ Artemis client to 2.21.0 - Add required activemq-address field removeFromBrokerOnDelete - Fix user report system endpoint URL
- Loading branch information
1 parent
68dfdd0
commit 114621d
Showing
15 changed files
with
92 additions
and
31 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -6,3 +6,4 @@ spec: | |
addressName: alarms | ||
queueName: alarms | ||
routingType: anycast | ||
removeFromBrokerOnDelete: true |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -6,3 +6,4 @@ spec: | |
addressName: notifications | ||
queueName: notifications | ||
routingType: anycast | ||
removeFromBrokerOnDelete: true |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,3 @@ | ||
@require('org.apache.activemq:artemis-jms-client:2.11.0') | ||
Feature: Crime bridge test | ||
|
||
Background: | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,3 @@ | ||
@require('org.apache.activemq:artemis-jms-client:2.11.0') | ||
Feature: Earthquake bridge test | ||
|
||
Background: | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,3 @@ | ||
@require('org.apache.activemq:artemis-jms-client:2.11.0') | ||
Feature: Health bridge test | ||
|
||
Background: | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,3 @@ | ||
@require('org.apache.activemq:artemis-jms-client:2.11.0') | ||
Feature: Pollution bridge test | ||
|
||
Background: | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,4 @@ | ||
apiVersion: broker.amq.io/v1beta1 | ||
kind: ActiveMQArtemis | ||
metadata: | ||
name: artemis-broker |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,43 @@ | ||
#!/bin/bash | ||
|
||
# Licensed to the Apache Software Foundation (ASF) under one or more | ||
# contributor license agreements. See the NOTICE file distributed with | ||
# this work for additional information regarding copyright ownership. | ||
# The ASF licenses this file to You under the Apache License, Version 2.0 | ||
# (the "License"); you may not use this file except in compliance with | ||
# the License. You may obtain a copy of the License at | ||
# | ||
# http://www.apache.org/licenses/LICENSE-2.0 | ||
# | ||
# Unless required by applicable law or agreed to in writing, software | ||
# distributed under the License is distributed on an "AS IS" BASIS, | ||
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. | ||
# See the License for the specific language governing permissions and | ||
# limitations under the License. | ||
|
||
set -e | ||
|
||
ACTIVEMQ_VERSION=v1.0.14 | ||
URL="https://raw.githubusercontent.com/artemiscloud/activemq-artemis-operator/${ACTIVEMQ_VERSION}" | ||
|
||
BROKER=$(kubectl get activemqartemis/artemis-broker -n ${YAKS_NAMESPACE} || echo "") | ||
|
||
#check for existing amq-broker instance | ||
if [ -z "$BROKER" ]; then | ||
echo "No AMQ Broker instance found" | ||
else | ||
# Install AMQ Artemis | ||
kubectl delete -f "${URL}"/deploy/crds/broker_activemqartemis_crd.yaml | ||
kubectl delete -f "${URL}"/deploy/crds/broker_activemqartemisaddress_crd.yaml | ||
kubectl delete -f "${URL}"/deploy/crds/broker_activemqartemisscaledown_crd.yaml | ||
kubectl delete -f "${URL}"/deploy/crds/broker_activemqartemissecurity_crd.yaml | ||
|
||
kubectl delete -f "${URL}"/deploy/service_account.yaml | ||
kubectl delete -f "${URL}"/deploy/role.yaml | ||
kubectl delete -f "${URL}"/deploy/role_binding.yaml | ||
kubectl delete -f "${URL}"/deploy/election_role.yaml | ||
kubectl delete -f "${URL}"/deploy/election_role_binding.yaml | ||
|
||
kubectl delete -f "${URL}"/deploy/operator_config.yaml | ||
kubectl delete -f "${URL}"/deploy/operator.yaml | ||
fi |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters