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
You can access the Kubernetes cluster within a Connected Environment, and use existing Kubernetes tools like `kubectl`.
4
+
5
+
Running `vsce env create` or `vsce env select` will automatically add a `kubectl` configuration context for you, so kubectl should already be connected to your VSCE k8s cluster. Examples:
6
+
- Confirm the current context: `kubectl config current-context`
7
+
- List all available contexts: `kubectl config get-contexts`. A kubernetes cluster created by VSCE will be named something like "vsce-<guid>".
- View the Kubernetes dashboard: run `kubectl proxy`, then open your browser to the address that this command emits (append `/ui` to the URL to navigate to the Kubernetes dashboard).
10
+
- List the running services in the default VSCE space named *mainline*: `kubectl get services --namespace=mainline`
0 commit comments