You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
What needs to be done
Before applying the service create the knative cluster using kind:
## Setup a Knative cluster to test the service
- name: Create k8s Kind Cluster
run: bash ./runner/scripts/01-kind.sh
- name: Install Serving
run: bash ./runner/scripts/02-serving.sh
- name: Install Kourier
run: bash ./runner/scripts/02-kourier.sh
- name: Setup domain
run: |
INGRESS_HOST="127.0.0.1"
KNATIVE_DOMAIN=$INGRESS_HOST.sslip.io
kubectl patch configmap -n knative-serving config-domain -p "{\"data\": {\"$KNATIVE_DOMAIN\": \"\"}}"
Make sure to user this versions to be consistent
env:
KIND_VERSION: v0.14.0
K8S_VERSION: v1.23
Note: As the scripts only install kubectl but not kn one can only use kubectl commands to apply and interact with services.
Either add kn installation or use the respective kubectl command instead of kn. I.e. kubectl apply -f <> instead of kn service apply -f <>
The text was updated successfully, but these errors were encountered:
apparently, there is a workaround to run Eventing (and probably all other more complex knative setups) that removes all resource requests to k8s (which may not be possible to satisfy when running on a single GH runner with 3 CPU cores and little memory)
In #238 we implement a new workflow that use Github runners for CI testing.
However, the workflow is not implemented for all benchmarks yet:
The benchmarks and the once net to be done:
What needs to be done
Before applying the service create the knative cluster using kind:
Make sure to user this versions to be consistent
Note: As the scripts only install
kubectl
but notkn
one can only use kubectl commands to apply and interact with services.Either add kn installation or use the respective kubectl command instead of kn. I.e.
kubectl apply -f <>
instead ofkn service apply -f <>
The text was updated successfully, but these errors were encountered: