How do I install Kubernetes on Linux SUSE?
Clash Royale CLAN TAG#URR8PPP
up vote
3
down vote
favorite
I am running SUSE Linux Enterprise Server 12 SP2. I want to install Kubernetes.
I tried this command: zypper in kubernetes
But I got this message: No provider of 'kubernetes' found.
I downloaded this file: http://download.opensuse.org/repositories/Virtualization:/containers/SLE_12_SP2/src/kubernetes-1.5.3-8.2.src.rpm
I used: rpm -ivh kubernetes-1.5.3-8.2.src.rpm
But there is no evidence that Kubernetes is installed.
I found a relevant .ymp file.
http://software.opensuse.org/ymp/Virtualization:containers/SLE_12_SP2/kubernetes.ymp
But I do not know how to use it.
How do I install Kubernetes on Linux SUSE?
docker suse kubernetes
add a comment |Â
up vote
3
down vote
favorite
I am running SUSE Linux Enterprise Server 12 SP2. I want to install Kubernetes.
I tried this command: zypper in kubernetes
But I got this message: No provider of 'kubernetes' found.
I downloaded this file: http://download.opensuse.org/repositories/Virtualization:/containers/SLE_12_SP2/src/kubernetes-1.5.3-8.2.src.rpm
I used: rpm -ivh kubernetes-1.5.3-8.2.src.rpm
But there is no evidence that Kubernetes is installed.
I found a relevant .ymp file.
http://software.opensuse.org/ymp/Virtualization:containers/SLE_12_SP2/kubernetes.ymp
But I do not know how to use it.
How do I install Kubernetes on Linux SUSE?
docker suse kubernetes
add a comment |Â
up vote
3
down vote
favorite
up vote
3
down vote
favorite
I am running SUSE Linux Enterprise Server 12 SP2. I want to install Kubernetes.
I tried this command: zypper in kubernetes
But I got this message: No provider of 'kubernetes' found.
I downloaded this file: http://download.opensuse.org/repositories/Virtualization:/containers/SLE_12_SP2/src/kubernetes-1.5.3-8.2.src.rpm
I used: rpm -ivh kubernetes-1.5.3-8.2.src.rpm
But there is no evidence that Kubernetes is installed.
I found a relevant .ymp file.
http://software.opensuse.org/ymp/Virtualization:containers/SLE_12_SP2/kubernetes.ymp
But I do not know how to use it.
How do I install Kubernetes on Linux SUSE?
docker suse kubernetes
I am running SUSE Linux Enterprise Server 12 SP2. I want to install Kubernetes.
I tried this command: zypper in kubernetes
But I got this message: No provider of 'kubernetes' found.
I downloaded this file: http://download.opensuse.org/repositories/Virtualization:/containers/SLE_12_SP2/src/kubernetes-1.5.3-8.2.src.rpm
I used: rpm -ivh kubernetes-1.5.3-8.2.src.rpm
But there is no evidence that Kubernetes is installed.
I found a relevant .ymp file.
http://software.opensuse.org/ymp/Virtualization:containers/SLE_12_SP2/kubernetes.ymp
But I do not know how to use it.
How do I install Kubernetes on Linux SUSE?
docker suse kubernetes
docker suse kubernetes
asked Mar 12 '17 at 16:55
Alex111
26124
26124
add a comment |Â
add a comment |Â
2 Answers
2
active
oldest
votes
up vote
4
down vote
The canonical instructions are avaiable at (Opensuse.org)
The page contains install instructions for kubernetes on openSUSE and SLE 12.
There is only source code and no binary packages.
â George Gaál
Apr 17 at 14:20
I'm on tumbleweed I can't get kubernetes running to save my life! Tried on an ubuntu 16.04 vm and it worked with no issues...
â Nick Acosta
Jun 1 at 6:14
add a comment |Â
up vote
0
down vote
What you have is a source RPM
. Source RPMs contain source code and patches as they were at the time of RPM build and a .spec
file used to generate the RPM.
You will need to have rpmbuild
installed on your machine if you wish to work source RPMs. Using rpmbuild
and the .spec
file, you can build RPM from the SRPM package.
New contributor
add a comment |Â
2 Answers
2
active
oldest
votes
2 Answers
2
active
oldest
votes
active
oldest
votes
active
oldest
votes
up vote
4
down vote
The canonical instructions are avaiable at (Opensuse.org)
The page contains install instructions for kubernetes on openSUSE and SLE 12.
There is only source code and no binary packages.
â George Gaál
Apr 17 at 14:20
I'm on tumbleweed I can't get kubernetes running to save my life! Tried on an ubuntu 16.04 vm and it worked with no issues...
â Nick Acosta
Jun 1 at 6:14
add a comment |Â
up vote
4
down vote
The canonical instructions are avaiable at (Opensuse.org)
The page contains install instructions for kubernetes on openSUSE and SLE 12.
There is only source code and no binary packages.
â George Gaál
Apr 17 at 14:20
I'm on tumbleweed I can't get kubernetes running to save my life! Tried on an ubuntu 16.04 vm and it worked with no issues...
â Nick Acosta
Jun 1 at 6:14
add a comment |Â
up vote
4
down vote
up vote
4
down vote
The canonical instructions are avaiable at (Opensuse.org)
The page contains install instructions for kubernetes on openSUSE and SLE 12.
The canonical instructions are avaiable at (Opensuse.org)
The page contains install instructions for kubernetes on openSUSE and SLE 12.
edited May 29 '17 at 17:38
Stephen Rauch
3,278101328
3,278101328
answered May 29 '17 at 17:06
e.blanchard
412
412
There is only source code and no binary packages.
â George Gaál
Apr 17 at 14:20
I'm on tumbleweed I can't get kubernetes running to save my life! Tried on an ubuntu 16.04 vm and it worked with no issues...
â Nick Acosta
Jun 1 at 6:14
add a comment |Â
There is only source code and no binary packages.
â George Gaál
Apr 17 at 14:20
I'm on tumbleweed I can't get kubernetes running to save my life! Tried on an ubuntu 16.04 vm and it worked with no issues...
â Nick Acosta
Jun 1 at 6:14
There is only source code and no binary packages.
â George Gaál
Apr 17 at 14:20
There is only source code and no binary packages.
â George Gaál
Apr 17 at 14:20
I'm on tumbleweed I can't get kubernetes running to save my life! Tried on an ubuntu 16.04 vm and it worked with no issues...
â Nick Acosta
Jun 1 at 6:14
I'm on tumbleweed I can't get kubernetes running to save my life! Tried on an ubuntu 16.04 vm and it worked with no issues...
â Nick Acosta
Jun 1 at 6:14
add a comment |Â
up vote
0
down vote
What you have is a source RPM
. Source RPMs contain source code and patches as they were at the time of RPM build and a .spec
file used to generate the RPM.
You will need to have rpmbuild
installed on your machine if you wish to work source RPMs. Using rpmbuild
and the .spec
file, you can build RPM from the SRPM package.
New contributor
add a comment |Â
up vote
0
down vote
What you have is a source RPM
. Source RPMs contain source code and patches as they were at the time of RPM build and a .spec
file used to generate the RPM.
You will need to have rpmbuild
installed on your machine if you wish to work source RPMs. Using rpmbuild
and the .spec
file, you can build RPM from the SRPM package.
New contributor
add a comment |Â
up vote
0
down vote
up vote
0
down vote
What you have is a source RPM
. Source RPMs contain source code and patches as they were at the time of RPM build and a .spec
file used to generate the RPM.
You will need to have rpmbuild
installed on your machine if you wish to work source RPMs. Using rpmbuild
and the .spec
file, you can build RPM from the SRPM package.
New contributor
What you have is a source RPM
. Source RPMs contain source code and patches as they were at the time of RPM build and a .spec
file used to generate the RPM.
You will need to have rpmbuild
installed on your machine if you wish to work source RPMs. Using rpmbuild
and the .spec
file, you can build RPM from the SRPM package.
New contributor
New contributor
answered 2 mins ago
6pack kid
1011
1011
New contributor
New contributor
add a comment |Â
add a comment |Â
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
StackExchange.ready(
function ()
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2funix.stackexchange.com%2fquestions%2f350963%2fhow-do-i-install-kubernetes-on-linux-suse%23new-answer', 'question_page');
);
Post as a guest
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Sign up using Google
Sign up using Facebook
Sign up using Email and Password