reklama - zainteresowany?

Kubernetes Operators. Automating the Container Orchestration Platform - Helion

Kubernetes Operators. Automating the Container Orchestration Platform
ebook
Autor: Jason Dobies, Joshua Wood
ISBN: 978-14-920-4799-5
stron: 156, Format: ebook
Data wydania: 2020-02-21
Księgarnia: Helion

Cena książki: 152,15 zł (poprzednio: 176,92 zł)
Oszczędzasz: 14% (-24,77 zł)

Dodaj do koszyka Kubernetes Operators. Automating the Container Orchestration Platform

Tagi: Inne - Programowanie

Operators are a way of packaging, deploying, and managing Kubernetes applications. A Kubernetes application doesn’t just run on Kubernetes; it’s composed and managed in Kubernetes terms. Operators add application-specific operational knowledge to a Kubernetes cluster, making it easier to automate complex, stateful applications and to augment the platform. Operators can coordinate application upgrades seamlessly, react to failures automatically, and streamline repetitive maintenance like backups.

Think of Operators as site reliability engineers in software. They work by extending the Kubernetes control plane and API, helping systems integrators, cluster administrators, and application developers reliably deploy and manage key services and components. Using real-world examples, authors Jason Dobies and Joshua Wood demonstrate how to use Operators today and how to create Operators for your applications with the Operator Framework and SDK.

  • Learn how to establish a Kubernetes cluster and deploy an Operator
  • Examine a range of Operators from usage to implementation
  • Explore the three pillars of the Operator Framework: the Operator SDK, the Operator Lifecycle Manager, and Operator Metering
  • Build Operators from the ground up using the Operator SDK
  • Build, package, and run an Operator in development, testing, and production phases
  • Learn how to distribute your Operator for installation on Kubernetes clusters

Dodaj do koszyka Kubernetes Operators. Automating the Container Orchestration Platform

 

Osoby które kupowały "Kubernetes Operators. Automating the Container Orchestration Platform", wybierały także:

  • DevOps w praktyce. Kurs video. Jenkins, Ansible, Terraform i Docker
  • Wyrażenia regularne od podstaw
  • Projektowanie systemów rozproszonych. Wzorce i paradygmaty dla skalowalnych, niezawodnych usÅ‚ug
  • Zrozum struktury danych. Algorytmy i praca na danych w Javie
  • Kosymulacja. Elastyczne projektowanie i symulacja wielodomenowa

Dodaj do koszyka Kubernetes Operators. Automating the Container Orchestration Platform

Spis treści

Kubernetes Operators. Automating the Container Orchestration Platform eBook -- spis treści

  • Preface
    • Who This Book Is For
    • What You Will Learn
      • Operator Framework and SDK
      • Other Operator Tools
    • Conventions Used in This Book
    • Using Code Examples
    • OReilly Online Learning
    • How to Contact Us
    • Acknowledgments
  • 1. Operators Teach Kubernetes New Tricks
    • How Kubernetes Works
    • Example: Stateless Web Server
    • Stateful Is Hard
    • Operators Are Software SREs
    • How Operators Work
      • Kubernetes CRs
    • How Operators Are Made
    • Example: The etcd Operator
      • The Case of the Missing Member
    • Who Are Operators For?
      • Operator Adoption
    • Lets Get Going!
  • 2. Running Operators
    • Setting Up an Operator Lab
      • Cluster Version Requirements
        • Control plane extensibility
      • Authorization Requirements
      • Standard Tools and Techniques
      • Suggested Cluster Configurations
        • Minikube
        • Red Hat OpenShift
      • Checking Your Cluster Version
    • Running a Simple Operator
      • A Common Starting Point
      • Fetching the etcd Operator Manifests
      • CRs: Custom API Endpoints
        • Creating a CRD
      • Who Am I: Defining an Operator Service Account
        • The role
        • Role binding
      • Deploying the etcd Operator
      • Declaring an etcd Cluster
      • Exercising etcd
      • Scaling the etcd Cluster
      • Failure and Automated Recovery
        • Recovering from a failed etcd member
      • Upgrading etcd Clusters
        • Upgrading the hard way
        • The easy way: Let the Operator do it
        • Triggering etcd upgrades
        • Upgrade the upgrade
      • Cleaning Up
    • Summary
  • 3. Operators at the Kubernetes Interface
    • Standard Scaling: The ReplicaSet Resource
    • Custom Resources
      • CR or ConfigMap?
    • Custom Controllers
    • Operator Scopes
      • Namespace Scope
      • Cluster-Scoped Operators
    • Authorization
      • Service Accounts
      • Roles
      • RoleBindings
      • ClusterRoles and ClusterRoleBindings
    • Summary
  • 4. The Operator Framework
    • Operator Framework Origins
    • Operator Maturity Model
    • Operator SDK
      • Installing the Operator SDK Tool
        • Binary installation
        • Installing from source
    • Operator Lifecycle Manager
    • Operator Metering
    • Summary
  • 5. Sample Application: Visitors Site
    • Application Overview
    • Installation with Manifests
      • Deploying MySQL
      • Backend
      • Frontend
    • Deploying the Manifests
    • Accessing the Visitors Site
    • Cleaning Up
    • Summary
  • 6. Adapter Operators
    • Helm Operator
      • Building the Operator
        • Creating a new chart
        • Use an existing chart
      • Fleshing Out the CRD
      • Reviewing Operator Permissions
      • Running the Helm Operator
    • Ansible Operator
      • Building the Operator
      • Fleshing Out the CRD
      • Reviewing Operator Permissions
      • Running the Ansible Operator
    • Testing an Operator
    • Summary
    • Resources
  • 7. Operators in Go with the Operator SDK
    • Initializing the Operator
    • Operator Scope
    • Custom Resource Definitions
      • Defining the Go Types
      • The CRD Manifest
    • Operator Permissions
    • Controller
      • The Reconcile Function
    • Operator Writing Tips
      • Retrieving the Resource
      • Child Resource Creation
      • Child Resource Deletion
      • Child Resource Naming
      • Idempotency
      • Operator Impact
    • Running an Operator Locally
    • Visitors Site Example
    • Summary
    • Resources
  • 8. Operator Lifecycle Manager
    • OLM Custom Resources
      • ClusterServiceVersion
      • CatalogSource
      • Subscription
      • InstallPlan
      • OperatorGroup
    • Installing OLM
    • Using OLM
      • Exploring the Operator
      • Deleting the Operator
    • OLM Bundle Metadata Files
      • Custom Resource Definitions
      • Cluster Service Version File
      • Package Manifest File
    • Writing a Cluster Service Version File
      • Generating a File Skeleton
      • Metadata
      • Owned CRDs
      • Required CRDs
      • Install Modes
      • Versioning and Updating
    • Writing a Package Manifest File
    • Running Locally
      • Prerequisites
        • Install the Marketplace Operator
        • Install Operator Courier
        • Retrieve a Quay token
        • Create the OperatorSource
      • Building the OLM Bundle
        • Perform linting
        • Push the bundle to Quay.io
        • Restart the OperatorSource
      • Installing the Operator Through OLM
        • Create the OperatorGroup
        • Create the subscription
      • Testing the Running Operator
    • Visitors Site Operator Example
    • Summary
    • Resources
  • 9. Operator Philosophy
    • SRE for Every Application
    • Toil Not, Neither Spin
      • Automatable: Work Your Computer Would Like
      • Running in Place: Work of No Enduring Value
      • Growing Pains: Work That Expands with the System
        • Manual scaling: Just like in the bad old days
        • Automating horizontal scaling: Kubernetes replicas
    • Operators: Kubernetes Application Reliability Engineering
      • Managing Application State
      • Golden Signals Sent to Software
    • Seven Habits of Highly Successful Operators
    • Summary
  • 10. Getting Involved
    • Feature Requests and Reporting Bugs
    • Contributing
    • Sharing Operators
    • Summary
  • A. Running an Operator as a Deployment Inside a Cluster
  • B. Custom Resource Validation
  • C. Role-Based Access Control (RBAC)
    • Fine-Tuning the Role
  • Index

Dodaj do koszyka Kubernetes Operators. Automating the Container Orchestration Platform

Code, Publish & WebDesing by CATALIST.com.pl



(c) 2005-2024 CATALIST agencja interaktywna, znaki firmowe należą do wydawnictwa Helion S.A.