DigitalOcean电子书:面向全栈开发人员的Kubernetes

news/2024/7/5 2:22:42
Download the Complete eBook! 下载完整的电子书!

Kubernetes for Full-Stack Developers eBook in EPUB format

适用EPUB格式的 Full-Stack Developers电子书的Kubernetes

Kubernetes for Full-Stack Developers eBook in PDF format

Kubernetes适用PDF格式的 全栈开发人员电子书

电子书简介 (Introduction to the eBook)

This book is designed to help newcomers and experienced users alike learn about Kubernetes. Its chapters are designed to introduce core Kubernetes concepts and to build on them to a level where running an application on a production cluster is a familiar, repeatable, and automated process. From there, more advanced topics are introduced, like how to manage a Kubernetes cluster itself.

本书旨在帮助新手和有经验的用户学习Kubernetes。 它的章节旨在介绍Kubernetes的核心概念,并在此基础上构建一个层次,使在生产集群上运行应用程序是一个熟悉,可重复且自动化的过程。 从那里开始,引入了更多高级主题,例如如何管理Kubernetes集群本身。

There are numerous tools, networking configurations, and processes that can help make Kubernetes more approachable. This book will examine each topic in turn so that anyone who follows along will be able to build, manage, and monitor a Kubernetes cluster on their own.

有许多工具,网络配置和流程可帮助使Kubernetes更易于访问。 本书将依次研究每个主题,以便任何关注的人都能够自行构建,管理和监视Kubernetes集群。

This book is based on the Kubernetes for Full-Stack Developers curriculum found on DigitalOcean Community. It is structured around a few central topics:

本书基于DigitalOcean社区上的Kubernetes for Full-Stack Developers课程 。 它围绕几个主要主题进行组织:

  1. Learning Kubernetes core concepts

    学习Kubernetes核心概念

  2. Modernizing applications to work with containers

    现代化应用程序以使用容器

  3. Containerizing applications

    集装箱化应用

  4. Deploying applications to Kubernetes

    将应用程序部署到Kubernetes

  5. Managing cluster operations

    管理集群操作

You should not feel obliged to follow the topics in any particular order. If one section is more interesting or relevant to you, explore it and come back to the others later if you prefer. Likewise, if you are already familiar with the concepts and tools in a given section, feel free to skip that one and focus on other topics.

您不应该以任何特定的顺序来跟随主题。 如果某个部分更有趣或与您相关,请进行探索,并在以后根据需要返回其他部分。 同样,如果您已经熟悉给定部分中的概念和工具,请随时跳过该部分,并专注于其他主题。

下载电子书 (Download the eBook)

You can download the eBook in either the EPUB or PDF format by following the links below.

您可以通过以下链接下载EPUB或PDF格式的电子书。

Download the Complete eBook! 下载完整的电子书!

Kubernetes for Full-Stack Developers eBook in EPUB format

适用EPUB格式的 Full-Stack Developers电子书的Kubernetes

Kubernetes for Full-Stack Developers eBook in PDF format

Kubernetes适用PDF格式的 全栈开发人员电子书

For additional Kubernetes resources and to participate in the DigitalOcean community of other developers using Kubernetes, check out our growing library of tutorials, questions, and projects with the Kubernetes tag.

有关Kubernetes的其他资源以及要加入使用Kubernetes的其他开发人员的DigitalOcean社区,请查看我们不断增长的带有Kubernetes标签的教程,问题和项目库。

翻译自: https://www.digitalocean.com/community/books/digitalocean-ebook-kubernetes-for-full-stack-developers


http://www.niftyadmin.cn/n/3648844.html

相关文章

换肤框架的搭建

首先所有皮肤的view——skinView:如ImageView public class SkinView {private View mSkView;//ImageViewprivate List<SkinAttr> mSkinAttrs;//src,backgroudpublic SkinView(View mSkView, List<SkinAttr> mSkinAttrs) {this.mSkView mSkView;this.mSkinAttrs …

javascript 符号_通过JavaScript了解Big O符号

javascript 符号If you’ve ever looked into getting a job as a developer you’ve probably come across this Google interview at some point and wondered ‘what the heck are they talking about?’. In this article, we’re going to explore what they mean throwi…

Windows系统一些计数器

Windows系统Windows -Processor指标名称指标描述指标范围指标单位CPU利用率&#xff08;% Processor Time&#xff09;% Processor Time指处理器执行非闲置线程时间的百分比。这个计数器设计成用来作为处理器活动的主要指示器。它通过在每个时间间隔中衡量处理器用于执行闲置处…

Git使用教程详解之四 服务器上的Git

服务器上的 Git 到目前为止&#xff0c;你应该已经学会了使用 Git 来完成日常工作。然而&#xff0c;如果想与他人合作&#xff0c;还需要一个远程的 Git 仓库。尽管技术上可以从个人的仓库里推送和拉取修改内容&#xff0c;但我们不鼓励这样做&#xff0c;因为一不留心就很容易…

使用JavaScript FileReader API读取和处理文件

Reading, writing and analyzing files is an essential component of software development. For security reasons, in JavaScript, we can’t directly access users’ files. If we had something like fs in Node.js, we could just steal documents from users! 读取&…

耍流氓式的保活service

QQ为什么一直常驻后台? &#xff08;白名单&#xff0c;双进程守护) 应用正在运行&#xff0c;这个时候内存不足回收杀进程 1.提高进程的优先级&#xff0c;其实就是减小进程的p->oomkilladj&#xff08;越小越重要&#xff09;&#xff0c;如启动Service调用startForeg…

[收藏]说声放弃太容易-Sunny

说声放弃太容易 原创&#xff1a;梁宁[Sunny]( 2004-04-16 14:14:16) 细草穿沙雪半消&#xff0c;吴官烟冷水迢迢。 梅花竹里无人见&#xff0c;一夜吹香过石桥。一个同事辞职了&#xff0c;她辞职的原因是不喜欢同单位的另外一个同事。她跑来和我说她将离去以及必须离去的原因…

如何安装svelte_Svelte的可读写商店入门

如何安装svelteIf you’re familiar with Redux or Vuex, then the Svelte stores offer a similar feature for state management. If your app is getting complicated, then it becomes difficult for components to relay data between themselves. Moving it to a global …