Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Add FAQ on connecting your own Kubernetes cluster to Meshery Playground #209

Closed
Closed
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
15 changes: 15 additions & 0 deletions site/src/assets/data/faq/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -92,6 +92,21 @@ So, in short, you can share access to your Kubernetes cluster with other users,
link: "https://meshery.io",
linktext: "Get Started with Meshery",
},
{
question:
"How do I connect my Kubernetes cluster to the Meshery Playground?",
category: "Meshery Playground",
answer: `
To connect your Kubernetes cluster to the Meshery Playground, follow these steps:
- **Generate a Kubeconfig File**: Run the following command to generate a kubeconfig file for your cluster, including the necessary context information for connecting to your publicly accessible Kubernetes API:
\`\`\`bash
kubectl config view --minify --flatten > config_minikube.yaml
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Why are we naming the file "minikube"?

Copy link
Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Why are we naming the file "minikube"?

Yes, I can change it to a more general name. I will add that the file can be named, for example, 'config.yaml,' to reflect the specific cluster context.

Copy link
Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Why are we naming the file "minikube"?

Yes, I can change it to a more general name. I will add that the file can be named, for example, 'config.yaml,' to reflect the specific cluster context.

It will work right?

\`\`\`
- **Upload the Kubeconfig File**: Navigate to **Settings > Environment > Out of Cluster Deployment** in the Meshery Web UI, and use the **Upload kubeconfig** option to upload the file you generated.
`,
link: "https://docs.meshery.io/installation/kubernetes",
linktext: "Meshery documentation",
},
],
};

Expand Down
Loading