What are kubernetes or google kuberenetes engine “workloads”?





.everyoneloves__top-leaderboard:empty,.everyoneloves__mid-leaderboard:empty,.everyoneloves__bot-mid-leaderboard:empty{ height:90px;width:728px;box-sizing:border-box;
}







0















https://cloud.google.com/kubernetes-engine/docs/how-to/deploying-workloads-overview



Im a little confused, the GCP kubernetes web console has a "workloads" section that seems to just have k8s "deployments". and In k8s documentations "workloads" is a section (empty): https://kubernetes.io/docs/concepts/workloads/



Are "workloads" an actual thing? Is there a "workloads" class? Or is workloads just used in the general sense of the term in the gke console and k8s documentation?



edit: ===============



Is there specific documentation for what google considers a GKE "workload" and a list of what will appear under the "Workloads" section of the GKE web console in gcp? Will the GCP "Workloads" section include only the following components?
enter image description here










share|improve this question

























  • I get the impression that it's an overarching term for things they produce pods (or maybe inclusive of pods).

    – John
    Nov 25 '18 at 1:46











  • kubernetes.io/docs/concepts/workloads is not a page. It's a just path. You should take a look into the pages those are under this path link.

    – Shudipta Sharma
    Nov 25 '18 at 6:35


















0















https://cloud.google.com/kubernetes-engine/docs/how-to/deploying-workloads-overview



Im a little confused, the GCP kubernetes web console has a "workloads" section that seems to just have k8s "deployments". and In k8s documentations "workloads" is a section (empty): https://kubernetes.io/docs/concepts/workloads/



Are "workloads" an actual thing? Is there a "workloads" class? Or is workloads just used in the general sense of the term in the gke console and k8s documentation?



edit: ===============



Is there specific documentation for what google considers a GKE "workload" and a list of what will appear under the "Workloads" section of the GKE web console in gcp? Will the GCP "Workloads" section include only the following components?
enter image description here










share|improve this question

























  • I get the impression that it's an overarching term for things they produce pods (or maybe inclusive of pods).

    – John
    Nov 25 '18 at 1:46











  • kubernetes.io/docs/concepts/workloads is not a page. It's a just path. You should take a look into the pages those are under this path link.

    – Shudipta Sharma
    Nov 25 '18 at 6:35














0












0








0








https://cloud.google.com/kubernetes-engine/docs/how-to/deploying-workloads-overview



Im a little confused, the GCP kubernetes web console has a "workloads" section that seems to just have k8s "deployments". and In k8s documentations "workloads" is a section (empty): https://kubernetes.io/docs/concepts/workloads/



Are "workloads" an actual thing? Is there a "workloads" class? Or is workloads just used in the general sense of the term in the gke console and k8s documentation?



edit: ===============



Is there specific documentation for what google considers a GKE "workload" and a list of what will appear under the "Workloads" section of the GKE web console in gcp? Will the GCP "Workloads" section include only the following components?
enter image description here










share|improve this question
















https://cloud.google.com/kubernetes-engine/docs/how-to/deploying-workloads-overview



Im a little confused, the GCP kubernetes web console has a "workloads" section that seems to just have k8s "deployments". and In k8s documentations "workloads" is a section (empty): https://kubernetes.io/docs/concepts/workloads/



Are "workloads" an actual thing? Is there a "workloads" class? Or is workloads just used in the general sense of the term in the gke console and k8s documentation?



edit: ===============



Is there specific documentation for what google considers a GKE "workload" and a list of what will appear under the "Workloads" section of the GKE web console in gcp? Will the GCP "Workloads" section include only the following components?
enter image description here







kubernetes gke






share|improve this question















share|improve this question













share|improve this question




share|improve this question








edited Nov 25 '18 at 18:05







red888

















asked Nov 25 '18 at 1:38









red888red888

5,017950107




5,017950107













  • I get the impression that it's an overarching term for things they produce pods (or maybe inclusive of pods).

    – John
    Nov 25 '18 at 1:46











  • kubernetes.io/docs/concepts/workloads is not a page. It's a just path. You should take a look into the pages those are under this path link.

    – Shudipta Sharma
    Nov 25 '18 at 6:35



















  • I get the impression that it's an overarching term for things they produce pods (or maybe inclusive of pods).

    – John
    Nov 25 '18 at 1:46











  • kubernetes.io/docs/concepts/workloads is not a page. It's a just path. You should take a look into the pages those are under this path link.

    – Shudipta Sharma
    Nov 25 '18 at 6:35

















I get the impression that it's an overarching term for things they produce pods (or maybe inclusive of pods).

– John
Nov 25 '18 at 1:46





I get the impression that it's an overarching term for things they produce pods (or maybe inclusive of pods).

– John
Nov 25 '18 at 1:46













kubernetes.io/docs/concepts/workloads is not a page. It's a just path. You should take a look into the pages those are under this path link.

– Shudipta Sharma
Nov 25 '18 at 6:35





kubernetes.io/docs/concepts/workloads is not a page. It's a just path. You should take a look into the pages those are under this path link.

– Shudipta Sharma
Nov 25 '18 at 6:35












2 Answers
2






active

oldest

votes


















2














https://kubernetes.io/docs/concepts/workloads is not a page. It's a just path. You should take a look into the pages those are under this path link.



Kubernetes workloads means all of the followings that has a podspec and can run containers. It includes:




  • Deployment

  • StatefulSet

  • ReplicaSet

  • ReplicationController (will be depricate in future)

  • DaemonSet

  • Job

  • CronJob

  • Pod






share|improve this answer


























  • So this is what will appear under the "workloads" section in GCP console?

    – red888
    Nov 25 '18 at 18:08











  • also everything that has a podspec is the same as saying everything that is owned by a kublete correct?

    – red888
    Nov 25 '18 at 18:11











  • Yes that's right

    – Shudipta Sharma
    Nov 25 '18 at 18:13



















1














It's a general term for ways to run "compute-ish stuff" on Kubernetes. The page in the Kubernetes docs is blank because it's only there for the table of contents tree on the left side of the page. As shown there, there are several types of Kubernetes objects that are generally a "workload". The simplest is a bare Pod, which is usually just a single container running somewhere. From there you have things like Deployments (multiple copies of a container), StatefulSets (multiple copies but with some special properties), Jobs ("run once" style stuff), and many more.






share|improve this answer
























  • Is there a specific google doc that classifies all "workload" items that will appear under the "workloads" section of the web console?

    – red888
    Nov 25 '18 at 18:09











  • Here a Google documentation about GKE concept and you will find a workload section

    – Alioua
    Nov 29 '18 at 14:56












Your Answer






StackExchange.ifUsing("editor", function () {
StackExchange.using("externalEditor", function () {
StackExchange.using("snippets", function () {
StackExchange.snippets.init();
});
});
}, "code-snippets");

StackExchange.ready(function() {
var channelOptions = {
tags: "".split(" "),
id: "1"
};
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: true,
noModals: true,
showLowRepImageUploadWarning: true,
reputationToPostImages: 10,
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%2fstackoverflow.com%2fquestions%2f53463963%2fwhat-are-kubernetes-or-google-kuberenetes-engine-workloads%23new-answer', 'question_page');
}
);

Post as a guest















Required, but never shown

























2 Answers
2






active

oldest

votes








2 Answers
2






active

oldest

votes









active

oldest

votes






active

oldest

votes









2














https://kubernetes.io/docs/concepts/workloads is not a page. It's a just path. You should take a look into the pages those are under this path link.



Kubernetes workloads means all of the followings that has a podspec and can run containers. It includes:




  • Deployment

  • StatefulSet

  • ReplicaSet

  • ReplicationController (will be depricate in future)

  • DaemonSet

  • Job

  • CronJob

  • Pod






share|improve this answer


























  • So this is what will appear under the "workloads" section in GCP console?

    – red888
    Nov 25 '18 at 18:08











  • also everything that has a podspec is the same as saying everything that is owned by a kublete correct?

    – red888
    Nov 25 '18 at 18:11











  • Yes that's right

    – Shudipta Sharma
    Nov 25 '18 at 18:13
















2














https://kubernetes.io/docs/concepts/workloads is not a page. It's a just path. You should take a look into the pages those are under this path link.



Kubernetes workloads means all of the followings that has a podspec and can run containers. It includes:




  • Deployment

  • StatefulSet

  • ReplicaSet

  • ReplicationController (will be depricate in future)

  • DaemonSet

  • Job

  • CronJob

  • Pod






share|improve this answer


























  • So this is what will appear under the "workloads" section in GCP console?

    – red888
    Nov 25 '18 at 18:08











  • also everything that has a podspec is the same as saying everything that is owned by a kublete correct?

    – red888
    Nov 25 '18 at 18:11











  • Yes that's right

    – Shudipta Sharma
    Nov 25 '18 at 18:13














2












2








2







https://kubernetes.io/docs/concepts/workloads is not a page. It's a just path. You should take a look into the pages those are under this path link.



Kubernetes workloads means all of the followings that has a podspec and can run containers. It includes:




  • Deployment

  • StatefulSet

  • ReplicaSet

  • ReplicationController (will be depricate in future)

  • DaemonSet

  • Job

  • CronJob

  • Pod






share|improve this answer















https://kubernetes.io/docs/concepts/workloads is not a page. It's a just path. You should take a look into the pages those are under this path link.



Kubernetes workloads means all of the followings that has a podspec and can run containers. It includes:




  • Deployment

  • StatefulSet

  • ReplicaSet

  • ReplicationController (will be depricate in future)

  • DaemonSet

  • Job

  • CronJob

  • Pod







share|improve this answer














share|improve this answer



share|improve this answer








edited Nov 25 '18 at 12:04

























answered Nov 25 '18 at 6:39









Shudipta SharmaShudipta Sharma

1,274415




1,274415













  • So this is what will appear under the "workloads" section in GCP console?

    – red888
    Nov 25 '18 at 18:08











  • also everything that has a podspec is the same as saying everything that is owned by a kublete correct?

    – red888
    Nov 25 '18 at 18:11











  • Yes that's right

    – Shudipta Sharma
    Nov 25 '18 at 18:13



















  • So this is what will appear under the "workloads" section in GCP console?

    – red888
    Nov 25 '18 at 18:08











  • also everything that has a podspec is the same as saying everything that is owned by a kublete correct?

    – red888
    Nov 25 '18 at 18:11











  • Yes that's right

    – Shudipta Sharma
    Nov 25 '18 at 18:13

















So this is what will appear under the "workloads" section in GCP console?

– red888
Nov 25 '18 at 18:08





So this is what will appear under the "workloads" section in GCP console?

– red888
Nov 25 '18 at 18:08













also everything that has a podspec is the same as saying everything that is owned by a kublete correct?

– red888
Nov 25 '18 at 18:11





also everything that has a podspec is the same as saying everything that is owned by a kublete correct?

– red888
Nov 25 '18 at 18:11













Yes that's right

– Shudipta Sharma
Nov 25 '18 at 18:13





Yes that's right

– Shudipta Sharma
Nov 25 '18 at 18:13













1














It's a general term for ways to run "compute-ish stuff" on Kubernetes. The page in the Kubernetes docs is blank because it's only there for the table of contents tree on the left side of the page. As shown there, there are several types of Kubernetes objects that are generally a "workload". The simplest is a bare Pod, which is usually just a single container running somewhere. From there you have things like Deployments (multiple copies of a container), StatefulSets (multiple copies but with some special properties), Jobs ("run once" style stuff), and many more.






share|improve this answer
























  • Is there a specific google doc that classifies all "workload" items that will appear under the "workloads" section of the web console?

    – red888
    Nov 25 '18 at 18:09











  • Here a Google documentation about GKE concept and you will find a workload section

    – Alioua
    Nov 29 '18 at 14:56
















1














It's a general term for ways to run "compute-ish stuff" on Kubernetes. The page in the Kubernetes docs is blank because it's only there for the table of contents tree on the left side of the page. As shown there, there are several types of Kubernetes objects that are generally a "workload". The simplest is a bare Pod, which is usually just a single container running somewhere. From there you have things like Deployments (multiple copies of a container), StatefulSets (multiple copies but with some special properties), Jobs ("run once" style stuff), and many more.






share|improve this answer
























  • Is there a specific google doc that classifies all "workload" items that will appear under the "workloads" section of the web console?

    – red888
    Nov 25 '18 at 18:09











  • Here a Google documentation about GKE concept and you will find a workload section

    – Alioua
    Nov 29 '18 at 14:56














1












1








1







It's a general term for ways to run "compute-ish stuff" on Kubernetes. The page in the Kubernetes docs is blank because it's only there for the table of contents tree on the left side of the page. As shown there, there are several types of Kubernetes objects that are generally a "workload". The simplest is a bare Pod, which is usually just a single container running somewhere. From there you have things like Deployments (multiple copies of a container), StatefulSets (multiple copies but with some special properties), Jobs ("run once" style stuff), and many more.






share|improve this answer













It's a general term for ways to run "compute-ish stuff" on Kubernetes. The page in the Kubernetes docs is blank because it's only there for the table of contents tree on the left side of the page. As shown there, there are several types of Kubernetes objects that are generally a "workload". The simplest is a bare Pod, which is usually just a single container running somewhere. From there you have things like Deployments (multiple copies of a container), StatefulSets (multiple copies but with some special properties), Jobs ("run once" style stuff), and many more.







share|improve this answer












share|improve this answer



share|improve this answer










answered Nov 25 '18 at 5:27









coderangercoderanger

30.7k32847




30.7k32847













  • Is there a specific google doc that classifies all "workload" items that will appear under the "workloads" section of the web console?

    – red888
    Nov 25 '18 at 18:09











  • Here a Google documentation about GKE concept and you will find a workload section

    – Alioua
    Nov 29 '18 at 14:56



















  • Is there a specific google doc that classifies all "workload" items that will appear under the "workloads" section of the web console?

    – red888
    Nov 25 '18 at 18:09











  • Here a Google documentation about GKE concept and you will find a workload section

    – Alioua
    Nov 29 '18 at 14:56

















Is there a specific google doc that classifies all "workload" items that will appear under the "workloads" section of the web console?

– red888
Nov 25 '18 at 18:09





Is there a specific google doc that classifies all "workload" items that will appear under the "workloads" section of the web console?

– red888
Nov 25 '18 at 18:09













Here a Google documentation about GKE concept and you will find a workload section

– Alioua
Nov 29 '18 at 14:56





Here a Google documentation about GKE concept and you will find a workload section

– Alioua
Nov 29 '18 at 14:56


















draft saved

draft discarded




















































Thanks for contributing an answer to Stack Overflow!


  • 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%2fstackoverflow.com%2fquestions%2f53463963%2fwhat-are-kubernetes-or-google-kuberenetes-engine-workloads%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







這個網誌中的熱門文章

Tangent Lines Diagram Along Smooth Curve

Yusuf al-Mu'taman ibn Hud

Zucchini