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
First user experience commands (make deploy-test-apps and make deploy-full-local-setup) are broken after #738 merge:
$ make deploy-full-local-setup
...
Deploy test apps
kubectl config use-context k3d- test-gslb1
Set the current-context in a kubeconfig file.
Aliases:
use-context, use
Examples:
# Use the context for the minikube cluster
kubectl config use-context minikube
Usage:
kubectl config use-context CONTEXT_NAME [options]
Use "kubectl options"for a list of global command-line options (applies to all commands).
error: Unexpected args: [k3d- test-gslb1]
make: *** [deploy-full-local-setup] Error 1
$ make deploy-test-apps
...
Deploy test apps
kubectl config use-context k3d-
Set the current-context in a kubeconfig file.
Aliases:
use-context, use
Examples:
# Use the context for the minikube cluster
kubectl config use-context minikube
Usage:
kubectl config use-context CONTEXT_NAME [options]
Use "kubectl options"for a list of global command-line options (applies to all commands).
error: Unexpected args: [k3d- test-gslb1]
make: *** [deploy-test-apps] Error 1
The text was updated successfully, but these errors were encountered:
Fixes broken user experience after #738 merge:
- call to `deploy-test-apps` function fixed in `deploy-full-cluster-setup` target
- deploy-test-apps function uses default k8s context for empty cluster arg
Fixes#751
Signed-off-by: Timofey Ilinykh <ilinytim@gmail.com>
Fixes broken user experience after #738 merge:
- call to `deploy-test-apps` function fixed in `deploy-full-local-setup` target
- `deploy-test-apps` function uses default k8s context for empty cluster arg
Fixes#751
Signed-off-by: Timofey Ilinykh <ilinytim@gmail.com>
First user experience commands (
make deploy-test-apps
andmake deploy-full-local-setup
) are broken after #738 merge:The text was updated successfully, but these errors were encountered: