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

Removed some comments #1116

Merged
merged 1 commit into from
Jan 7, 2025
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
13 changes: 0 additions & 13 deletions build/kube_setup.sh
Original file line number Diff line number Diff line change
Expand Up @@ -26,15 +26,6 @@ if ! command -v jq; then
exit 1
fi

## GO is required for yq, check if go is installed
#echo "*** Checking for 'go' ..."
#if ! command -v go; then
# echo "*** 'go' not found in path. Please install go with:"
# [[ $PLATFORM == "Darwin" ]] && echo " 'brew install golang' or the instructions at https://golang.org/doc/install" \
# || echo " sudo dnf install golang"
# exit 1
#fi

# kubectl is required for interactions with the cluster.
if [ -n "${KUBECTL_CMD}" ]; then
: # already set via env var
Expand All @@ -52,10 +43,6 @@ source build/.build_venv/bin/activate
pip install --upgrade pip setuptools wheel
pip install pyyaml

#GO_BIN_PATH="$(go env GOPATH)/bin"
#
#export PATH="$PATH:$GO_BIN_PATH"

declare -a BG_PIDS=()

ROOT_DIR=$(pwd)
Expand Down
7 changes: 0 additions & 7 deletions ci/konflux_minikube_e2e_tests.sh
Original file line number Diff line number Diff line change
Expand Up @@ -72,7 +72,6 @@ preferences: {}
EOM

export PATH="$KUBEBUILDER_ASSETS:$PATH"
#export PATH="/root/go/bin:$PATH"

export KUBECONFIG=$PWD/kube-config
export KUBECTL_CMD="kubectl "
Expand All @@ -85,12 +84,6 @@ export IMAGE_TAG=`git rev-parse --short=8 HEAD`

$KUBECTL_CMD create namespace clowder-system

#mkdir artifacts
#
#make release

#cat manifest.yaml > artifacts/manifest.yaml

$KUBECTL_CMD apply -f ../manifest.yaml --validate=false -n clowder-system

## The default generated config isn't quite right for our tests - so we'll create a new one and restart clowder
Expand Down
Loading