-
Notifications
You must be signed in to change notification settings - Fork 1.4k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
[WFLY-19334] Fix use of kubectl/oc in overridable-functions.sh
- Loading branch information
Showing
7 changed files
with
24 additions
and
24 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
4 changes: 2 additions & 2 deletions
4
...enshift-ci/build-root/scripts/qs-overrides/opentelemetry-tracing/overridable-functions.sh
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,9 +1,9 @@ | ||
function runPostHelmInstallCommands() { | ||
echo "Applying all OpenTelemetry Collector resources" | ||
oc apply -f charts/opentelemetry-collector.yaml | ||
oc apply -f opentelemetry-collector-openshift.yaml | ||
} | ||
|
||
function cleanPrerequisites() { | ||
echo "Deleting all OpenTelemetry Collector resources" | ||
oc delete -f charts/opentelemetry-collector.yaml | ||
oc delete -f opentelemetry-collector-openshift.yaml | ||
} |
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
4 changes: 2 additions & 2 deletions
4
.github/workflows/scripts/kubernetes/qs-overrides/micrometer/overridable-functions.sh
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,9 +1,9 @@ | ||
function runPostHelmInstallCommands() { | ||
echo "Applying all OpenTelemetry Collector resources" | ||
oc apply -f charts/opentelemetry-collector-kubernetes.yaml | ||
kubectl apply -f charts/opentelemetry-collector-kubernetes.yaml | ||
} | ||
|
||
function cleanPrerequisites() { | ||
echo "Deleting all OpenTelemetry Collector resources" | ||
oc delete -f charts/opentelemetry-collector-kubernetes.yaml | ||
kubectl delete -f charts/opentelemetry-collector-kubernetes.yaml | ||
} |
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
4 changes: 2 additions & 2 deletions
4
.../workflows/scripts/kubernetes/qs-overrides/opentelemetry-tracing/overridable-functions.sh
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,9 +1,9 @@ | ||
function runPostHelmInstallCommands() { | ||
echo "Applying all OpenTelemetry Collector resources" | ||
oc apply -f charts/opentelemetry-collector-kubernetes.yaml | ||
kubectl apply -f charts/opentelemetry-collector-kubernetes.yaml | ||
} | ||
|
||
function cleanPrerequisites() { | ||
echo "Deleting all OpenTelemetry Collector resources" | ||
oc delete -f charts/opentelemetry-collector-kubernetes.yaml | ||
kubectl delete -f charts/opentelemetry-collector-kubernetes.yaml | ||
} |
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