How do I install Kubernetes on Linux SUSE? Announcing the arrival of Valued Associate #679: Cesar Manara Planned maintenance scheduled April 17/18, 2019 at 00:00UTC (8:00pm US/Eastern) 2019 Community Moderator Election Results Why I closed the “Why is Kali so hard” questionHow to install ruby-devel and python-devel in SuSE Enterprise?How-to create a DVD from a network repositoryRemoving OpenSuse packages from SUSE 11 sp 4 (SLES) saftly?Unable to pull images in Kubernetesunable to pull images in kubernetes from private registrykubernetes external access issuekubernetes yaml file re-usekubernetes export portsKubernetes tiller pod dying issueWhy does docker-ce-3:18.09 installation on SLES 12 throw “systemd-units needed” message?

How to compare two different files line by line in unix?

Is it fair for a professor to grade us on the possession of past papers?

What is homebrew?

Do I really need recursive chmod to restrict access to a folder?

Most bit efficient text communication method?

Why aren't air breathing engines used as small first stages

Amount of permutations on an NxNxN Rubik's Cube

Is there any way for the UK Prime Minister to make a motion directly dependent on Government confidence?

If my PI received research grants from a company to be able to pay my postdoc salary, did I have a potential conflict interest too?

How to answer "Have you ever been terminated?"

Is the Standard Deduction better than Itemized when both are the same amount?

How do I find out the mythology and history of my Fortress?

Delete nth line from bottom

When the Haste spell ends on a creature, do attackers have advantage against that creature?

Can anything be seen from the center of the Boötes void? How dark would it be?

Fundamental Solution of the Pell Equation

What is the escape velocity of a neutron particle (not neutron star)

How do I make this wiring inside cabinet safer? (Pic)

8 Prisoners wearing hats

How does the math work when buying airline miles?

How to down pick a chord with skipped strings?

What is this building called? (It was built in 2002)

What is the longest distance a player character can jump in one leap?

Can an alien society believe that their star system is the universe?



How do I install Kubernetes on Linux SUSE?



Announcing the arrival of Valued Associate #679: Cesar Manara
Planned maintenance scheduled April 17/18, 2019 at 00:00UTC (8:00pm US/Eastern)
2019 Community Moderator Election Results
Why I closed the “Why is Kali so hard” questionHow to install ruby-devel and python-devel in SuSE Enterprise?How-to create a DVD from a network repositoryRemoving OpenSuse packages from SUSE 11 sp 4 (SLES) saftly?Unable to pull images in Kubernetesunable to pull images in kubernetes from private registrykubernetes external access issuekubernetes yaml file re-usekubernetes export portsKubernetes tiller pod dying issueWhy does docker-ce-3:18.09 installation on SLES 12 throw “systemd-units needed” message?



.everyoneloves__top-leaderboard:empty,.everyoneloves__mid-leaderboard:empty,.everyoneloves__bot-mid-leaderboard:empty margin-bottom:0;








3















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?










share|improve this question




























    3















    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?










    share|improve this question
























      3












      3








      3


      1






      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?










      share|improve this question














      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






      share|improve this question













      share|improve this question











      share|improve this question




      share|improve this question










      asked Mar 12 '17 at 16:55









      Alex111Alex111

      26124




      26124




















          3 Answers
          3






          active

          oldest

          votes


















          4














          The canonical instructions are avaiable at (Opensuse.org)



          The page contains install instructions for kubernetes on openSUSE and SLE 12.






          share|improve this answer

























          • There is only source code and no binary packages.

            – George Gaál
            Apr 17 '18 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 '18 at 6:14


















          0














          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.






          share|improve this answer






























            0














            Try these instructions :
            https://developer.ibm.com/storage/2019/03/01/kubernetes-1-12-on-suse-linux-using-kubeadm/



            they base on adding the google kubernetes repo to your SLES system.






            share|improve this answer








            New contributor




            MichaelD is a new contributor to this site. Take care in asking for clarification, commenting, and answering.
            Check out our Code of Conduct.




















            • While this link may answer the question, it is better to include the essential parts of the answer here and provide the link for reference. Link-only answers can become invalid if the linked page changes. Please review the Help Center for more information regarding this. Thank you!

              – kemotep
              9 hours ago











            Your Answer








            StackExchange.ready(function()
            var channelOptions =
            tags: "".split(" "),
            id: "106"
            ;
            initTagRenderer("".split(" "), "".split(" "), channelOptions);

            StackExchange.using("externalEditor", function()
            // Have to fire editor after snippets, if snippets enabled
            if (StackExchange.settings.snippets.snippetsEnabled)
            StackExchange.using("snippets", function()
            createEditor();
            );

            else
            createEditor();

            );

            function createEditor()
            StackExchange.prepareEditor(
            heartbeatType: 'answer',
            autoActivateHeartbeat: false,
            convertImagesToLinks: false,
            noModals: true,
            showLowRepImageUploadWarning: true,
            reputationToPostImages: null,
            bindNavPrevention: true,
            postfix: "",
            imageUploader:
            brandingHtml: "Powered by u003ca class="icon-imgur-white" href="https://imgur.com/"u003eu003c/au003e",
            contentPolicyHtml: "User contributions licensed under u003ca href="https://creativecommons.org/licenses/by-sa/3.0/"u003ecc by-sa 3.0 with attribution requiredu003c/au003e u003ca href="https://stackoverflow.com/legal/content-policy"u003e(content policy)u003c/au003e",
            allowUrls: true
            ,
            onDemand: true,
            discardSelector: ".discard-answer"
            ,immediatelyShowMarkdownHelp:true
            );



            );













            draft saved

            draft discarded


















            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















            Required, but never shown

























            3 Answers
            3






            active

            oldest

            votes








            3 Answers
            3






            active

            oldest

            votes









            active

            oldest

            votes






            active

            oldest

            votes









            4














            The canonical instructions are avaiable at (Opensuse.org)



            The page contains install instructions for kubernetes on openSUSE and SLE 12.






            share|improve this answer

























            • There is only source code and no binary packages.

              – George Gaál
              Apr 17 '18 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 '18 at 6:14















            4














            The canonical instructions are avaiable at (Opensuse.org)



            The page contains install instructions for kubernetes on openSUSE and SLE 12.






            share|improve this answer

























            • There is only source code and no binary packages.

              – George Gaál
              Apr 17 '18 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 '18 at 6:14













            4












            4








            4







            The canonical instructions are avaiable at (Opensuse.org)



            The page contains install instructions for kubernetes on openSUSE and SLE 12.






            share|improve this answer















            The canonical instructions are avaiable at (Opensuse.org)



            The page contains install instructions for kubernetes on openSUSE and SLE 12.







            share|improve this answer














            share|improve this answer



            share|improve this answer








            edited May 29 '17 at 17:38









            Stephen Rauch

            3,354101529




            3,354101529










            answered May 29 '17 at 17:06









            e.blancharde.blanchard

            412




            412












            • There is only source code and no binary packages.

              – George Gaál
              Apr 17 '18 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 '18 at 6:14

















            • There is only source code and no binary packages.

              – George Gaál
              Apr 17 '18 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 '18 at 6:14
















            There is only source code and no binary packages.

            – George Gaál
            Apr 17 '18 at 14:20





            There is only source code and no binary packages.

            – George Gaál
            Apr 17 '18 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 '18 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 '18 at 6:14













            0














            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.






            share|improve this answer



























              0














              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.






              share|improve this answer

























                0












                0








                0







                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.






                share|improve this answer













                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.







                share|improve this answer












                share|improve this answer



                share|improve this answer










                answered Oct 30 '18 at 6:04









                6pack kid6pack kid

                1011




                1011





















                    0














                    Try these instructions :
                    https://developer.ibm.com/storage/2019/03/01/kubernetes-1-12-on-suse-linux-using-kubeadm/



                    they base on adding the google kubernetes repo to your SLES system.






                    share|improve this answer








                    New contributor




                    MichaelD is a new contributor to this site. Take care in asking for clarification, commenting, and answering.
                    Check out our Code of Conduct.




















                    • While this link may answer the question, it is better to include the essential parts of the answer here and provide the link for reference. Link-only answers can become invalid if the linked page changes. Please review the Help Center for more information regarding this. Thank you!

                      – kemotep
                      9 hours ago















                    0














                    Try these instructions :
                    https://developer.ibm.com/storage/2019/03/01/kubernetes-1-12-on-suse-linux-using-kubeadm/



                    they base on adding the google kubernetes repo to your SLES system.






                    share|improve this answer








                    New contributor




                    MichaelD is a new contributor to this site. Take care in asking for clarification, commenting, and answering.
                    Check out our Code of Conduct.




















                    • While this link may answer the question, it is better to include the essential parts of the answer here and provide the link for reference. Link-only answers can become invalid if the linked page changes. Please review the Help Center for more information regarding this. Thank you!

                      – kemotep
                      9 hours ago













                    0












                    0








                    0







                    Try these instructions :
                    https://developer.ibm.com/storage/2019/03/01/kubernetes-1-12-on-suse-linux-using-kubeadm/



                    they base on adding the google kubernetes repo to your SLES system.






                    share|improve this answer








                    New contributor




                    MichaelD is a new contributor to this site. Take care in asking for clarification, commenting, and answering.
                    Check out our Code of Conduct.










                    Try these instructions :
                    https://developer.ibm.com/storage/2019/03/01/kubernetes-1-12-on-suse-linux-using-kubeadm/



                    they base on adding the google kubernetes repo to your SLES system.







                    share|improve this answer








                    New contributor




                    MichaelD is a new contributor to this site. Take care in asking for clarification, commenting, and answering.
                    Check out our Code of Conduct.









                    share|improve this answer



                    share|improve this answer






                    New contributor




                    MichaelD is a new contributor to this site. Take care in asking for clarification, commenting, and answering.
                    Check out our Code of Conduct.









                    answered 9 hours ago









                    MichaelDMichaelD

                    1




                    1




                    New contributor




                    MichaelD is a new contributor to this site. Take care in asking for clarification, commenting, and answering.
                    Check out our Code of Conduct.





                    New contributor





                    MichaelD is a new contributor to this site. Take care in asking for clarification, commenting, and answering.
                    Check out our Code of Conduct.






                    MichaelD is a new contributor to this site. Take care in asking for clarification, commenting, and answering.
                    Check out our Code of Conduct.












                    • While this link may answer the question, it is better to include the essential parts of the answer here and provide the link for reference. Link-only answers can become invalid if the linked page changes. Please review the Help Center for more information regarding this. Thank you!

                      – kemotep
                      9 hours ago

















                    • While this link may answer the question, it is better to include the essential parts of the answer here and provide the link for reference. Link-only answers can become invalid if the linked page changes. Please review the Help Center for more information regarding this. Thank you!

                      – kemotep
                      9 hours ago
















                    While this link may answer the question, it is better to include the essential parts of the answer here and provide the link for reference. Link-only answers can become invalid if the linked page changes. Please review the Help Center for more information regarding this. Thank you!

                    – kemotep
                    9 hours ago





                    While this link may answer the question, it is better to include the essential parts of the answer here and provide the link for reference. Link-only answers can become invalid if the linked page changes. Please review the Help Center for more information regarding this. Thank you!

                    – kemotep
                    9 hours ago

















                    draft saved

                    draft discarded
















































                    Thanks for contributing an answer to Unix & Linux Stack Exchange!


                    • Please be sure to answer the question. Provide details and share your research!

                    But avoid


                    • Asking for help, clarification, or responding to other answers.

                    • Making statements based on opinion; back them up with references or personal experience.

                    To learn more, see our tips on writing great answers.




                    draft saved


                    draft discarded














                    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















                    Required, but never shown





















































                    Required, but never shown














                    Required, but never shown












                    Required, but never shown







                    Required, but never shown

































                    Required, but never shown














                    Required, but never shown












                    Required, but never shown







                    Required, but never shown







                    -docker, kubernetes, suse

                    Popular posts from this blog

                    Creating 100m^2 grid automatically using QGIS?Creating grid constrained within polygon in QGIS?Createing polygon layer from point data using QGIS?Creating vector grid using QGIS?Creating grid polygons from coordinates using R or PythonCreating grid from spatio temporal point data?Creating fields in attributes table using other layers using QGISCreate .shp vector grid in QGISQGIS Creating 4km point grid within polygonsCreate a vector grid over a raster layerVector Grid Creates just one grid

                    What is this called? Old film camera viewer?What makes a good film camera?What to do with an old film camera?What should one look for when buying a used film camera?What is the value and age of this pre-1967 Ricoh 35 mm camera?DSLR recommendation, question about old Canon 35mm film Camera & lensesCan anyone identify the silver rangefinder-style camera in this advertisement?What kind of a Polaroid 600-camera is this?Will an old film camera still work even when not used in a very long time?What is this camera / Can I develop the film?How to fit an action camera into antique (bellows) housing?What to check when buying used and old film bodies?

                    Why is this plane circling around the Lucknow airport every day?Why do aircraft on Flight Radar 24 jump around randomly sometimes?What airport has this walkway over a taxiway?How does Chicago O'Hare's tower sequence aircraft at peak capacity?Which airport is featured in this Delta commercial?After a crash, for how long is the airport closed?Can a passenger plane stand still in the air, or hover at a fixed location above a ground?What are those trucks towing around, and why?What is this airport outside of Cairo, Egypt?Which US airport has the lowest circling MDH?What is this airport video?