Kubernetes Operators 1stEdition Jason Dobies - PDF
Download (2025)
https://ebookultra.com/download/kubernetes-operators-1st-edition-
jason-dobies/
Visit ebookultra.com today to download the complete set of
ebooks or textbooks
2.
We believe theseproducts will be a great fit for you. Click
the link to download now, or visit ebookultra.com
to discover even more!
Morphological Image Operators Morphological Image
Operators 1st Edition Heijmans H.J.A.M.
https://ebookultra.com/download/morphological-image-operators-
morphological-image-operators-1st-edition-heijmans-h-j-a-m/
Tools for PDE Pseudodifferential Operators
Paradifferential Operators and Layer Potentials Michael E.
Taylor
https://ebookultra.com/download/tools-for-pde-pseudodifferential-
operators-paradifferential-operators-and-layer-potentials-michael-e-
taylor/
Kubernetes in Action First Edition Marko Luksa
https://ebookultra.com/download/kubernetes-in-action-first-edition-
marko-luksa/
Getting Started with Kubernetes 2nd Edition Jonathan Baier
https://ebookultra.com/download/getting-started-with-kubernetes-2nd-
edition-jonathan-baier/
3.
Ultimate Certified KubernetesAdministrator CKA Rajesh
Vishnupant Gheware
https://ebookultra.com/download/ultimate-certified-kubernetes-
administrator-cka-rajesh-vishnupant-gheware/
Hacking Kubernetes Threat Driven Analysis and Defense 1st
Edition Andrew Martin
https://ebookultra.com/download/hacking-kubernetes-threat-driven-
analysis-and-defense-1st-edition-andrew-martin/
Tensor Operators and their Applications 1st Edition Arif
Salimov
https://ebookultra.com/download/tensor-operators-and-their-
applications-1st-edition-arif-salimov/
Metrics on the Phase Space and Non Selfadjoint Pseudo
Differential Operators Pseudo Differential Operators
Theory and Applications 1st Edition. Edition Nicolas
Lerner
https://ebookultra.com/download/metrics-on-the-phase-space-and-non-
selfadjoint-pseudo-differential-operators-pseudo-differential-
operators-theory-and-applications-1st-edition-edition-nicolas-lerner/
Mastering Kubernetes Large scale container deployment and
management 1st Edition Gigi Sayfan
https://ebookultra.com/download/mastering-kubernetes-large-scale-
container-deployment-and-management-1st-edition-gigi-sayfan/
5.
Kubernetes Operators 1stEdition Jason Dobies Digital
Instant Download
Author(s): Jason Dobies, Joshua Wood
ISBN(s): 9781492048053, 1492048054
Edition: 1
File Details: PDF, 6.29 MB
Year: 2020
Language: english
6.
Jason Dobies &
JoshuaWood
Kubernetes
Operators
Automating the Container Orchestration Platform
Sponsored by
8.
Praise for KubernetesOperators
“Kuberneteshas emerged as the world’s most powerful container orchestration platform,
but its true power is hidden behind an extensible API and automation framework that
will redefine how future platforms are built and operated; this book is the missing manual.”
—Kelsey Hightower, Technologist, Google Cloud
“The Kubernetes Operators book by Jason and Josh is something that should not be
missing on your (digital) bookshelf, if you’re serious about Kubernetes. It’s hands-on,
covers the why and the how, and enables you to successfully apply the operator pattern in
your environment. I’d consider this book the perfect followup to Programming Kubernetes.”
—Michael Hausenblas, Amazon Web Services
“This book is essential for anyone looking to adopt the Operator Paradigm for their
critical workloads. It provides a comprehensive overview of design principles,
implementation paths and traps, and utilization of the existing ecosystem.”
—Anish Asthana, Software Engineer, Red Hat
“Working with Jason over the past several years, I have always wanted a dump of what’s in
his head, and now I have it! Josh and Jason have created an essential guide for anyone
creating operators, and it will be a significant advantage for us as we look to mature our
operator into the Auto Pilot phase with the goal of becoming a true ‘Kubernetes
Application Reliability Engineering’ function for our customers.”
—Dave Meurer, Technical Global Alliances, Synopsys, Inc.
“Another brilliant publication by Josh and Jason that provides market-leading data
for Kubernetes Operators.”
—Joe Gomes, Global Alliances, Synopsys, Inc.
10.
Jason Dobies andJoshua Wood
Kubernetes Operators
Automating the Container
Orchestration Platform
Boston Farnham Sebastopol Tokyo
Beijing Boston Farnham Sebastopol Tokyo
Beijing
To my kids,Leanne and Austin, know that it is never easy to have to tell you “No, daddy
has to work.” Realize that all of it—the meetings, the trips, the book—all of it is for you
two. I have your backs in whatever the future holds for you, and I can’t wait to see the
awesome things you two do.
—Jason
To Shayna.
—Joshua
14.
Table of Contents
Preface.. . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . xiii
1. Operators Teach Kubernetes New Tricks. . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 1
How Kubernetes Works 1
Example: Stateless Web Server 3
Stateful Is Hard 4
Operators Are Software SREs 5
How Operators Work 5
Kubernetes CRs 6
How Operators Are Made 6
Example: The etcd Operator 7
The Case of the Missing Member 7
Who Are Operators For? 8
Operator Adoption 8
Let’s Get Going! 9
2. Running Operators. . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . 11
Setting Up an Operator Lab 11
Cluster Version Requirements 11
Authorization Requirements 12
Standard Tools and Techniques 13
Suggested Cluster Configurations 13
Checking Your Cluster Version 14
Running a Simple Operator 15
A Common Starting Point 15
Fetching the etcd Operator Manifests 16
CRs: Custom API Endpoints 16
Who Am I: Defining an Operator Service Account 17
vii
Preface
Kubernetes is apopular container orchestrator. It harnesses many computers together
into one large computing resource and establishes a means of addressing that
resource through the Kubernetes application programming interface (API). Kuber‐
netes is open source software with origins at Google, developed over the last five
years by a large group of collaborators under the auspices of the Cloud Native Com‐
puting Foundation (CNCF) (https://www.cncf.io/).
An Operator extends Kubernetes to automate the management of the entire lifecycle
of a particular application. Operators serve as a packaging mechanism for distribut‐
ing applications on Kubernetes, and they monitor, maintain, recover, and upgrade the
software they deploy.
Who This Book Is For
If you’ve deployed applications on a Kubernetes cluster, you’ll be familiar with some
of the challenges and aspirations that forged the Operator pattern. If you’ve main‐
tained foundation services like databases and filesystems in their own ghetto outside
your orchestrated clusters, and you yearn to bring them into the neighborhood, this
guide to Kubernetes Operators is for you.
What You Will Learn
This book explains what an Operator is and how Operators extend the Kubernetes
API. It shows how to deploy and use existing Operators, and how to create and dis‐
tribute Operators for your applications using the Red Hat Operator Framework
(https://github.com/operator-framework). We relate good practices for designing,
building, and distributing Operators, and we explain the thinking that animates
Operators with Site Reliability Engineering (SRE) principles.
After describing Operators and their concepts in the first chapter, we’ll suggest ways
to get access to a Kubernetes cluster where you can do the exercises in the rest of the
xiii
21.
book. With acluster running, you’ll deploy an Operator and observe its behavior
when its application fails, scales, or gets upgraded to a new version.
Later, we will explore the Operator SDK and show you how to use it to build an
Operator to naturalize an example application as a first-class Kubernetes citizen. With
that practical foundation in place, we will discuss the SRE ideas from which Opera‐
tors derive and the goals they share: reducing operations effort and cost, increasing
service reliability, and spurring innovation by freeing teams from repetitive mainte‐
nance work.
Operator Framework and SDK
The Operator pattern emerged at CoreOS (https://coreos.com) as a way to automate
increasingly complex applications on Kubernetes clusters, including managing
Kubernetes itself and the etcd (https://github.com/coreos/etcd) key-value store at its
heart. Work on Operators continued through an acquisition by Red Hat, leading to
the 2018 release of the open source Operator Framework and SDK. The examples in
this book use the Red Hat Operator SDK and the distribution mechanisms that join it
in the Operator Framework.
Other Operator Tools
A community has grown up around Operators, with more than a hundred Operators
for an array of applications from many vendors and projects available in Red Hat’s
distribution channels alone. Several other Operator construction tools exist. We won’t
discuss them in detail, but after you read this book you’ll be able to compare any of
them with the Operator SDK and Framework. Other open source tools available for
building Operators include Kopf (https://oreil.ly/JCL-S) for Python, Kubebuilder
(https://oreil.ly/8zdbj) from the Kubernetes project, and the Java Operator SDK
(https://oreil.ly/yXhVg).
Conventions Used in This Book
The following typographical conventions are used in this book:
Italic
Indicates new terms, URLs, email addresses, filenames, and file extensions.
Constant width
Used for program listings, as well as within paragraphs to refer to program ele‐
ments such as variable or function names, databases, data types, environment
variables, statements, and keywords.
Constant width bold
Shows commands or other text that should be typed literally by the user.
xiv | Preface
22.
Constant width italic
Showstext that should be replaced with user-supplied values or by values deter‐
mined by context.
This element signifies a tip or suggestion.
This element signifies a general note.
This element indicates a warning or caution.
Using Code Examples
Supplemental material (code examples, exercises, etc.) is available for download at
https://github.com/kubernetes-operators-book/.
If you have a technical question or a problem using the code examples, please send
email to bookquestions@oreilly.com.
This book is here to help you get your job done. In general, if example code is offered
with this book, you may use it in your programs and documentation. You do not
need to contact us for permission unless you’re reproducing a significant portion of
the code. For example, writing a program that uses several chunks of code from this
book does not require permission. Selling or distributing examples from O’Reilly
books does require permission. Answering a question by citing this book and quoting
example code does not require permission. Incorporating a significant amount of
example code from this book into your product’s documentation does require
permission.
We appreciate, but generally do not require, attribution. An attribution usually
includes the title, author, publisher, and ISBN. For example: “Kubernetes Operators by
Jason Dobies and Joshua Wood (O’Reilly). Copyright 2020 Red Hat, Inc.,
978-1-492-04805-3.”
If you feel your use of code examples falls outside fair use or the permission given
above, feel free to contact us at permissions@oreilly.com.
Preface | xv
23.
O’Reilly Online Learning
Formore than 40 years, O’Reilly Media has provided technol‐
ogy and business training, knowledge, and insight to help
companies succeed.
Our unique network of experts and innovators share their knowledge and expertise
through books, articles, conferences, and our online learning platform. O’Reilly’s
online learning platform gives you on-demand access to live training courses, in-
depth learning paths, interactive coding environments, and a vast collection of text
and video from O’Reilly and 200+ other publishers. For more information, please
visit http://oreilly.com.
How to Contact Us
Please address comments and questions concerning this book to the publisher:
O’Reilly Media, Inc.
1005 Gravenstein Highway North
Sebastopol, CA 95472
800-998-9938 (in the United States or Canada)
707-829-0515 (international or local)
707-829-0104 (fax)
We have a web page for this book, where we list errata, examples, and any additional
information. You can access this page at https://oreil.ly/Kubernetes_Operators.
Email bookquestions@oreilly.com to comment or ask technical questions.
For more about our books, courses, and conferences, see http://www.oreilly.com.
Find us on Facebook: http://facebook.com/oreilly
Follow us on Twitter: http://twitter.com/oreillymedia
Watch us on YouTube: http://www.youtube.com/oreillymedia
Acknowledgments
We’d like to thank Red Hat and the OpenShift Advocacy team there for their support,
in particular the steadfast and all-trades assistance of Ryan Jarvinen. We also thank
the many people who reviewed, checked, suggested, and otherwise gave their time to
make this work more coherent and complete, among them Anish Asthana, Evan Cor‐
dell, Michael Gasch, Michael Hausenblas, Shawn Hurley, and Jess Males.
xvi | Preface
24.
CHAPTER 1
Operators TeachKubernetes New Tricks
An Operator is a way to package, run, and maintain a Kubernetes application. A
Kubernetes application is not only deployed on Kubernetes, it is designed to use and
to operate in concert with Kubernetes facilities and tools.
An Operator builds on Kubernetes abstractions to automate the entire lifecycle of the
software it manages. Because they extend Kubernetes, Operators provide application-
specific automation in terms familiar to a large and growing community. For applica‐
tion programmers, Operators make it easier to deploy and run the foundation
services on which their apps depend. For infrastructure engineers and vendors, Oper‐
ators provide a consistent way to distribute software on Kubernetes clusters and
reduce support burdens by identifying and correcting application problems before
the pager beeps.
Before we begin to describe how Operators do these jobs, let’s define a few Kuber‐
netes terms to provide context and a shared language to describe Operator concepts
and components.
How Kubernetes Works
Kubernetes automates the lifecycle of a stateless application, such as a static web
server. Without state, any instances of an application are interchangeable. This simple
web server retrieves files and sends them on to a visitor’s browser. Because the server
is not tracking state or storing input or data of any kind, when one server instance
fails, Kubernetes can replace it with another. Kubernetes refers to these instances,
each a copy of an application running on the cluster, as replicas.
A Kubernetes cluster is a collection of computers, called nodes. All cluster work runs
on one, some, or all of a cluster’s nodes. The basic unit of work, and of replication, is
1
25.
the pod. Apod is a group of one or more Linux containers with common resources
like networking, storage, and access to shared memory.
The Kubernetes pod documentation (https://oreil.ly/ziz5q) is a good
starting point for more information about the pod abstraction.
At a high level, a Kubernetes cluster can be divided into two planes. The control plane
is, in simple terms, Kubernetes itself. A collection of pods comprises the control plane
and implements the Kubernetes application programming interface (API) and cluster
orchestration logic.
The application plane, or data plane, is everything else. It is the group of nodes where
application pods run. One or more nodes are usually dedicated to running applica‐
tions, while one or more nodes are often sequestered to run only control plane pods.
As with application pods, multiple replicas of control plane components can run on
multiple controller nodes to provide redundancy.
The controllers of the control plane implement control loops that repeatedly compare
the desired state of the cluster to its actual state. When the two diverge, a controller
takes action to make them match. Operators extend this behavior. The schematic in
Figure 1-1 shows the major control plane components, with worker nodes running
application workloads.
2 | Chapter 1: Operators Teach Kubernetes New Tricks
This eBook isfor the use of anyone anywhere in the United
States and most other parts of the world at no cost and with
almost no restrictions whatsoever. You may copy it, give it away
or re-use it under the terms of the Project Gutenberg License
included with this eBook or online at www.gutenberg.org. If you
are not located in the United States, you will have to check the
laws of the country where you are located before using this
eBook.
1.E.2. If an individual Project Gutenberg™ electronic work is derived
from texts not protected by U.S. copyright law (does not contain a
notice indicating that it is posted with permission of the copyright
holder), the work can be copied and distributed to anyone in the
United States without paying any fees or charges. If you are
redistributing or providing access to a work with the phrase “Project
Gutenberg” associated with or appearing on the work, you must
comply either with the requirements of paragraphs 1.E.1 through
1.E.7 or obtain permission for the use of the work and the Project
Gutenberg™ trademark as set forth in paragraphs 1.E.8 or 1.E.9.
1.E.3. If an individual Project Gutenberg™ electronic work is posted
with the permission of the copyright holder, your use and distribution
must comply with both paragraphs 1.E.1 through 1.E.7 and any
additional terms imposed by the copyright holder. Additional terms
will be linked to the Project Gutenberg™ License for all works posted
with the permission of the copyright holder found at the beginning
of this work.
1.E.4. Do not unlink or detach or remove the full Project
Gutenberg™ License terms from this work, or any files containing a
part of this work or any other work associated with Project
Gutenberg™.
1.E.5. Do not copy, display, perform, distribute or redistribute this
electronic work, or any part of this electronic work, without
prominently displaying the sentence set forth in paragraph 1.E.1
28.
with active linksor immediate access to the full terms of the Project
Gutenberg™ License.
1.E.6. You may convert to and distribute this work in any binary,
compressed, marked up, nonproprietary or proprietary form,
including any word processing or hypertext form. However, if you
provide access to or distribute copies of a Project Gutenberg™ work
in a format other than “Plain Vanilla ASCII” or other format used in
the official version posted on the official Project Gutenberg™ website
(www.gutenberg.org), you must, at no additional cost, fee or
expense to the user, provide a copy, a means of exporting a copy, or
a means of obtaining a copy upon request, of the work in its original
“Plain Vanilla ASCII” or other form. Any alternate format must
include the full Project Gutenberg™ License as specified in
paragraph 1.E.1.
1.E.7. Do not charge a fee for access to, viewing, displaying,
performing, copying or distributing any Project Gutenberg™ works
unless you comply with paragraph 1.E.8 or 1.E.9.
1.E.8. You may charge a reasonable fee for copies of or providing
access to or distributing Project Gutenberg™ electronic works
provided that:
• You pay a royalty fee of 20% of the gross profits you derive
from the use of Project Gutenberg™ works calculated using the
method you already use to calculate your applicable taxes. The
fee is owed to the owner of the Project Gutenberg™ trademark,
but he has agreed to donate royalties under this paragraph to
the Project Gutenberg Literary Archive Foundation. Royalty
payments must be paid within 60 days following each date on
which you prepare (or are legally required to prepare) your
periodic tax returns. Royalty payments should be clearly marked
as such and sent to the Project Gutenberg Literary Archive
Foundation at the address specified in Section 4, “Information
29.
about donations tothe Project Gutenberg Literary Archive
Foundation.”
• You provide a full refund of any money paid by a user who
notifies you in writing (or by e-mail) within 30 days of receipt
that s/he does not agree to the terms of the full Project
Gutenberg™ License. You must require such a user to return or
destroy all copies of the works possessed in a physical medium
and discontinue all use of and all access to other copies of
Project Gutenberg™ works.
• You provide, in accordance with paragraph 1.F.3, a full refund of
any money paid for a work or a replacement copy, if a defect in
the electronic work is discovered and reported to you within 90
days of receipt of the work.
• You comply with all other terms of this agreement for free
distribution of Project Gutenberg™ works.
1.E.9. If you wish to charge a fee or distribute a Project Gutenberg™
electronic work or group of works on different terms than are set
forth in this agreement, you must obtain permission in writing from
the Project Gutenberg Literary Archive Foundation, the manager of
the Project Gutenberg™ trademark. Contact the Foundation as set
forth in Section 3 below.
1.F.
1.F.1. Project Gutenberg volunteers and employees expend
considerable effort to identify, do copyright research on, transcribe
and proofread works not protected by U.S. copyright law in creating
the Project Gutenberg™ collection. Despite these efforts, Project
Gutenberg™ electronic works, and the medium on which they may
be stored, may contain “Defects,” such as, but not limited to,
incomplete, inaccurate or corrupt data, transcription errors, a
copyright or other intellectual property infringement, a defective or
30.
damaged disk orother medium, a computer virus, or computer
codes that damage or cannot be read by your equipment.
1.F.2. LIMITED WARRANTY, DISCLAIMER OF DAMAGES - Except for
the “Right of Replacement or Refund” described in paragraph 1.F.3,
the Project Gutenberg Literary Archive Foundation, the owner of the
Project Gutenberg™ trademark, and any other party distributing a
Project Gutenberg™ electronic work under this agreement, disclaim
all liability to you for damages, costs and expenses, including legal
fees. YOU AGREE THAT YOU HAVE NO REMEDIES FOR
NEGLIGENCE, STRICT LIABILITY, BREACH OF WARRANTY OR
BREACH OF CONTRACT EXCEPT THOSE PROVIDED IN PARAGRAPH
1.F.3. YOU AGREE THAT THE FOUNDATION, THE TRADEMARK
OWNER, AND ANY DISTRIBUTOR UNDER THIS AGREEMENT WILL
NOT BE LIABLE TO YOU FOR ACTUAL, DIRECT, INDIRECT,
CONSEQUENTIAL, PUNITIVE OR INCIDENTAL DAMAGES EVEN IF
YOU GIVE NOTICE OF THE POSSIBILITY OF SUCH DAMAGE.
1.F.3. LIMITED RIGHT OF REPLACEMENT OR REFUND - If you
discover a defect in this electronic work within 90 days of receiving
it, you can receive a refund of the money (if any) you paid for it by
sending a written explanation to the person you received the work
from. If you received the work on a physical medium, you must
return the medium with your written explanation. The person or
entity that provided you with the defective work may elect to provide
a replacement copy in lieu of a refund. If you received the work
electronically, the person or entity providing it to you may choose to
give you a second opportunity to receive the work electronically in
lieu of a refund. If the second copy is also defective, you may
demand a refund in writing without further opportunities to fix the
problem.
1.F.4. Except for the limited right of replacement or refund set forth
in paragraph 1.F.3, this work is provided to you ‘AS-IS’, WITH NO
OTHER WARRANTIES OF ANY KIND, EXPRESS OR IMPLIED,
31.
INCLUDING BUT NOTLIMITED TO WARRANTIES OF
MERCHANTABILITY OR FITNESS FOR ANY PURPOSE.
1.F.5. Some states do not allow disclaimers of certain implied
warranties or the exclusion or limitation of certain types of damages.
If any disclaimer or limitation set forth in this agreement violates the
law of the state applicable to this agreement, the agreement shall be
interpreted to make the maximum disclaimer or limitation permitted
by the applicable state law. The invalidity or unenforceability of any
provision of this agreement shall not void the remaining provisions.
1.F.6. INDEMNITY - You agree to indemnify and hold the Foundation,
the trademark owner, any agent or employee of the Foundation,
anyone providing copies of Project Gutenberg™ electronic works in
accordance with this agreement, and any volunteers associated with
the production, promotion and distribution of Project Gutenberg™
electronic works, harmless from all liability, costs and expenses,
including legal fees, that arise directly or indirectly from any of the
following which you do or cause to occur: (a) distribution of this or
any Project Gutenberg™ work, (b) alteration, modification, or
additions or deletions to any Project Gutenberg™ work, and (c) any
Defect you cause.
Section 2. Information about the Mission
of Project Gutenberg™
Project Gutenberg™ is synonymous with the free distribution of
electronic works in formats readable by the widest variety of
computers including obsolete, old, middle-aged and new computers.
It exists because of the efforts of hundreds of volunteers and
donations from people in all walks of life.
Volunteers and financial support to provide volunteers with the
assistance they need are critical to reaching Project Gutenberg™’s
goals and ensuring that the Project Gutenberg™ collection will
32.
remain freely availablefor generations to come. In 2001, the Project
Gutenberg Literary Archive Foundation was created to provide a
secure and permanent future for Project Gutenberg™ and future
generations. To learn more about the Project Gutenberg Literary
Archive Foundation and how your efforts and donations can help,
see Sections 3 and 4 and the Foundation information page at
www.gutenberg.org.
Section 3. Information about the Project
Gutenberg Literary Archive Foundation
The Project Gutenberg Literary Archive Foundation is a non-profit
501(c)(3) educational corporation organized under the laws of the
state of Mississippi and granted tax exempt status by the Internal
Revenue Service. The Foundation’s EIN or federal tax identification
number is 64-6221541. Contributions to the Project Gutenberg
Literary Archive Foundation are tax deductible to the full extent
permitted by U.S. federal laws and your state’s laws.
The Foundation’s business office is located at 809 North 1500 West,
Salt Lake City, UT 84116, (801) 596-1887. Email contact links and up
to date contact information can be found at the Foundation’s website
and official page at www.gutenberg.org/contact
Section 4. Information about Donations to
the Project Gutenberg Literary Archive
Foundation
Project Gutenberg™ depends upon and cannot survive without
widespread public support and donations to carry out its mission of
increasing the number of public domain and licensed works that can
be freely distributed in machine-readable form accessible by the
widest array of equipment including outdated equipment. Many
33.
small donations ($1to $5,000) are particularly important to
maintaining tax exempt status with the IRS.
The Foundation is committed to complying with the laws regulating
charities and charitable donations in all 50 states of the United
States. Compliance requirements are not uniform and it takes a
considerable effort, much paperwork and many fees to meet and
keep up with these requirements. We do not solicit donations in
locations where we have not received written confirmation of
compliance. To SEND DONATIONS or determine the status of
compliance for any particular state visit www.gutenberg.org/donate.
While we cannot and do not solicit contributions from states where
we have not met the solicitation requirements, we know of no
prohibition against accepting unsolicited donations from donors in
such states who approach us with offers to donate.
International donations are gratefully accepted, but we cannot make
any statements concerning tax treatment of donations received from
outside the United States. U.S. laws alone swamp our small staff.
Please check the Project Gutenberg web pages for current donation
methods and addresses. Donations are accepted in a number of
other ways including checks, online payments and credit card
donations. To donate, please visit: www.gutenberg.org/donate.
Section 5. General Information About
Project Gutenberg™ electronic works
Professor Michael S. Hart was the originator of the Project
Gutenberg™ concept of a library of electronic works that could be
freely shared with anyone. For forty years, he produced and
distributed Project Gutenberg™ eBooks with only a loose network of
volunteer support.
34.
Project Gutenberg™ eBooksare often created from several printed
editions, all of which are confirmed as not protected by copyright in
the U.S. unless a copyright notice is included. Thus, we do not
necessarily keep eBooks in compliance with any particular paper
edition.
Most people start at our website which has the main PG search
facility: www.gutenberg.org.
This website includes information about Project Gutenberg™,
including how to make donations to the Project Gutenberg Literary
Archive Foundation, how to help produce our new eBooks, and how
to subscribe to our email newsletter to hear about new eBooks.
35.
Welcome to ourwebsite – the ideal destination for book lovers and
knowledge seekers. With a mission to inspire endlessly, we offer a
vast collection of books, ranging from classic literary works to
specialized publications, self-development books, and children's
literature. Each book is a new journey of discovery, expanding
knowledge and enriching the soul of the reade
Our website is not just a platform for buying books, but a bridge
connecting readers to the timeless values of culture and wisdom. With
an elegant, user-friendly interface and an intelligent search system,
we are committed to providing a quick and convenient shopping
experience. Additionally, our special promotions and home delivery
services ensure that you save time and fully enjoy the joy of reading.
Let us accompany you on the journey of exploring knowledge and
personal growth!
ebookultra.com