-
Notifications
You must be signed in to change notification settings - Fork 265
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #1150 from cedricclyburn/operators-4-7
- Loading branch information
Showing
6 changed files
with
10 additions
and
13 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,17 +1,14 @@ | ||
The etcd operator manages etcd clusters deployed to Kubernetes and automates tasks related to operating an etcd cluster. | ||
In this self-paced tutorial, you will learn how to work with the etcd operator, used to manage etcd clusters deployed to Kubernetes and automates tasks related to operating an etcd cluster. | ||
|
||
In this tutorial, you will gain an understanding of: | ||
- [Create and Destroy](https://github.com/coreos/etcd-operator#create-and-destroy-an-etcd-cluster) | ||
- [Resize](https://github.com/coreos/etcd-operator#resize-an-etcd-cluster) | ||
- [Failover](https://github.com/coreos/etcd-operator#failover) | ||
- [Rolling upgrade](https://github.com/coreos/etcd-operator#upgrade-an-etcd-cluster) | ||
- [Backup and Restore](https://github.com/coreos/etcd-operator#backup-and-restore-an-etcd-cluster) | ||
|
||
There are [more spec examples](https://github.com/coreos/etcd-operator/blob/master/doc/user/spec_examples.md) on setting up clusters with different configurations | ||
## Getting started | ||
|
||
Read [Best Practices](https://github.com/coreos/etcd-operator/blob/master/doc/best_practices.md) for more information on how to better use etcd operator. | ||
The etcd operator manages etcd clusters deployed to Kubernetes and automates tasks related to operating an etcd cluster. Read [Best Practices](https://github.com/coreos/etcd-operator/blob/master/doc/best_practices.md) for more information on how to better use etcd operator. Read [RBAC docs](https://github.com/coreos/etcd-operator/blob/master/doc/user/rbac.md) for how to setup RBAC rules for etcd operator if RBAC is in place. Finally the [Resources and Labels](https://github.com/coreos/etcd-operator/blob/master/doc/user/resource_labels.md) doc for an overview of the resources created by the etcd-operator. | ||
|
||
Read [RBAC docs](https://github.com/coreos/etcd-operator/blob/master/doc/user/rbac.md) for how to setup RBAC rules for etcd operator if RBAC is in place. | ||
|
||
Read [Developer Guide](https://github.com/coreos/etcd-operator/blob/master/doc/dev/developer_guide.md) for setting up a development environment if you want to contribute. | ||
|
||
See the [Resources and Labels](https://github.com/coreos/etcd-operator/blob/master/doc/user/resource_labels.md) doc for an overview of the resources created by the etcd-operator. | ||
In the following sections, you will go through each of the above topics to automate tasks related to operating an etcd cluster. Let's get started! |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -55,7 +55,7 @@ | |
}, | ||
"backend": { | ||
"autoUpgrade": true, | ||
"imageid": "openshift-4-5", | ||
"imageid": "openshift-4-7", | ||
"port": 8443 | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -52,7 +52,7 @@ | |
}, | ||
"backend": { | ||
"autoUpgrade": true, | ||
"imageid": "openshift-4-5", | ||
"imageid": "openshift-4-7", | ||
"port": 8443 | ||
} | ||
} |