Skip to content

Commit

Permalink
OPCT-300: chaning Kube service URL (#65)
Browse files Browse the repository at this point in the history
  • Loading branch information
mtulio authored Aug 13, 2024
1 parent 76f986f commit 09747fb
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion openshift-tests-plugin/pkg/plugin/plugin.go
Original file line number Diff line number Diff line change
Expand Up @@ -51,7 +51,7 @@ const (
// WaitThresholdLimit defines the limit to wait for done file. Default 4h.
WaitThresholdLimit = 14400

KubeApiServerInternal = "https://172.30.0.1:443"
KubeApiServerInternal = "https://kubernetes.default.svc:443"
KubeApiServerSACertCA = "/var/run/secrets/kubernetes.io/serviceaccount/ca.crt"
KubeApiServerSAToken = "/var/run/secrets/kubernetes.io/serviceaccount/token"

Expand Down
2 changes: 1 addition & 1 deletion openshift-tests-plugin/plugin/entrypoint-tests.sh
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ set -o errexit

# shellcheck disable=SC2034
declare -gr KUBECONFIG=/tmp/shared/kubeconfig;
declare -gr KUBE_API_URL="https://172.30.0.1:443"
declare -gr KUBE_API_URL="https://kubernetes.default.svc:443"
declare -gr SA_TOKEN_PATH="/var/run/secrets/kubernetes.io/serviceaccount/token"
declare -gr SA_CA_PATH="/var/run/secrets/kubernetes.io/serviceaccount/ca.crt"
declare -gr CTRL_DONE_PLUGIN="/tmp/sonobuoy/results/done"
Expand Down

0 comments on commit 09747fb

Please sign in to comment.