jwl1993
jwl1993

Reputation: 324

How can I setup Jenkins-x on local kubernetes cluster?

Recently, I tried to setup Jenkins X on a kubernetes cluster. However there exists some problem during installation.

There are several options in jx create cluster such as aks(create with AKS), aws(create with AWS), minikube(create with Minikube) and etc.

However there is no option which create a cluster with local kubernetes cluster. I want to setup Jenkins X with my own cluster.

Can I get some advice?

Thanks.

Upvotes: 0

Views: 1538

Answers (2)

sanrum21
sanrum21

Reputation: 11

To install Jenkins X on already existing cluster, you have to use the below command:

jx install --provider=kubernetes --on-premise

Above command will install the jx on your cluster.

Upvotes: 1

Michael Neale
Michael Neale

Reputation: 19468

when you have your cluster setup such that you can run kubectl commands against it, you can run jx boot to setup your jx installation. You don't need to use jx create cluster as your cluster already exists.

Upvotes: 2

Related Questions