Skip to content

Commit

Permalink
modifying docs and e2e setup file instead of actions
Browse files Browse the repository at this point in the history
  • Loading branch information
gabo1208 committed Oct 12, 2023
1 parent d784f37 commit ccb01fa
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 7 deletions.
5 changes: 0 additions & 5 deletions .github/workflows/kind-e2e.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -40,11 +40,6 @@ jobs:
k8s-version: ${{ matrix.k8s-version }}
kind-worker-count: 3

- name: Setup Gateway API
env:
GATEWAY_API_VERSION: 'v0.8.1'
run: kubectl apply -f https://github.com/kubernetes-sigs/gateway-api/releases/download/$GATEWAY_API_VERSION/experimental-install.yaml

- uses: actions/checkout@v4
- name: test
run: |
Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -78,7 +78,7 @@ source ./hack/test-env.sh
```bash
# gateway-api CRD must be installed before Istio.
echo ">> Installing Gateway API CRDs"
kubectl apply -f config/100-gateway-api.yaml
kubectl apply -f https://github.com/kubernetes-sigs/gateway-api/releases/download/${GATEWAY_API_VERSION}/experimental-install.yaml

echo ">> Bringing up Istio"
curl -sL https://istio.io/downloadIstioctl | sh -
Expand Down
3 changes: 2 additions & 1 deletion test/e2e-common.sh
Original file line number Diff line number Diff line change
Expand Up @@ -87,7 +87,8 @@ function knative_teardown() {
}

function setup_networking() {
kubectl apply -f config/100-gateway-api.yaml || return $?
echo ">> Installing Gateway API CRDs"
kubectl apply -f https://github.com/kubernetes-sigs/gateway-api/releases/download/${GATEWAY_API_VERSION}/experimental-install.yaml

if [[ "${INGRESS}" == "contour" ]]; then
setup_contour
Expand Down

0 comments on commit ccb01fa

Please sign in to comment.