Skip to content

Commit

Permalink
removed debug, added kubeconfig env var
Browse files Browse the repository at this point in the history
  • Loading branch information
enrichman committed Apr 4, 2024
1 parent cf33b4b commit f18330c
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 9 deletions.
10 changes: 3 additions & 7 deletions .github/workflows/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -218,20 +218,16 @@ jobs:
make acceptance-cluster-setup
export KUBECONFIG=$PWD/tmp/acceptance-kubeconfig
make install-cert-manager
# Ensure the client version won't match the server one
# export VSUFFIX=-dev
# Don't patch, just install the latest released version
# export EPINIO_RELEASED=true
make prepare_environment_k3d
- name: CLI Apps Acceptance Tests
env:
REGISTRY_USERNAME: ${{ secrets.DOCKERHUB_USERNAME }}
REGISTRY_PASSWORD: ${{ secrets.DOCKERHUB_TOKEN }}
PRIVATE_REPO_IMPORT_PAT: ${{ secrets.PRIVATE_REPO_IMPORT_PAT }}
run: make test-acceptance-cli-apps
run: |
export KUBECONFIG=$PWD/tmp/acceptance-kubeconfig
make test-acceptance-cli-apps
- name: Dump logs
if: always()
Expand Down
4 changes: 2 additions & 2 deletions scripts/prepare-environment-k3d.sh
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@
# See the License for the specific language governing permissions and
# limitations under the License.

set -ex
set -e

SCRIPT_DIR="$( cd -- "$( dirname -- "${BASH_SOURCE[0]}" )" &> /dev/null && pwd )"

Expand Down Expand Up @@ -103,7 +103,7 @@ else
--set server.disableTracking="true" \
--set "extraEnv[0].name=KUBE_API_QPS" --set-string "extraEnv[0].value=50" \
--set "extraEnv[1].name=KUBE_API_BURST" --set-string "extraEnv[1].value=100" \
epinio helm-charts/chart/epinio --wait --debug "$@"
epinio helm-charts/chart/epinio --wait "$@"

# compile coverage binary and add required env var
if [ -n "$GOCOVERDIR" ]; then
Expand Down

0 comments on commit f18330c

Please sign in to comment.