Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Add optimized grafana dashboard #1454

Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 8 additions & 0 deletions cicd-scripts/setup-e2e-tests.sh
Original file line number Diff line number Diff line change
Expand Up @@ -130,6 +130,11 @@ EOF

# deploy the MCO operator via the kustomize resources
deploy_mco_operator() {
# makes sure we get the MULTICLUSTER_OBSERVABILITY_OPERATOR_IMAGE_REF
if [[ -n ${IS_KIND_ENV} ]]; then
source ${ROOTDIR}/tests/run-in-kind/env.sh
fi

if [[ -n ${MULTICLUSTER_OBSERVABILITY_OPERATOR_IMAGE_REF} ]]; then
cd ${ROOTDIR}/operators/multiclusterobservability/config/manager && kustomize edit set image quay.io/stolostron/multicluster-observability-operator=${MULTICLUSTER_OBSERVABILITY_OPERATOR_IMAGE_REF}
else
Expand All @@ -138,6 +143,9 @@ deploy_mco_operator() {
cd ${ROOTDIR}
kustomize build ${ROOTDIR}/operators/multiclusterobservability/config/default | kubectl apply -n ${OCM_DEFAULT_NS} --server-side=true -f -

cat ${ROOTDIR}/operators/multiclusterobservability/config/manager/manager.yaml
cat ${ROOTDIR}/operators/multiclusterobservability/config/manager/kustomization.yaml

# wait until mco is ready
wait_for_deployment_ready 10 60s ${OCM_DEFAULT_NS} multicluster-observability-operator
echo "mco operator is deployed successfully."
Expand Down
Loading
Loading