-
Notifications
You must be signed in to change notification settings - Fork 40k
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 #26446 from mbruzek/juju-master-worker
Automatic merge from submit-queue Implementing a proper master/worker split in the juju cluster code. ``` release-note-none ``` General updates to the cluster/juju Kubernetes provider, to bring it up to date. Updating the skydns templates to version 11 Updating the etcd container definition to include arch. Updating the master template to include arch and version for hyperkube container. Adding dns_domain configuration options. Adding storage layer options. [![Analytics](https://kubernetes-site.appspot.com/UA-36037335-10/GitHub/.github/PULL_REQUEST_TEMPLATE.md?pixel)]()
- Loading branch information
Showing
10 changed files
with
546 additions
and
284 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,14 +1,21 @@ | ||
options: | ||
version: | ||
type: string | ||
default: "v1.1.7" | ||
default: "v1.2.3" | ||
description: | | ||
The version of Kubernetes to use in this charm. The version is | ||
inserted in the configuration files that specify the hyperkube | ||
container to use when starting a Kubernetes cluster. Changing this | ||
value will restart the Kubernetes cluster. | ||
The version of Kubernetes to use in this charm. The version is inserted | ||
in the configuration files that specify the hyperkube container to use | ||
when starting a Kubernetes cluster. Changing this value will restart the | ||
Kubernetes cluster. | ||
cidr: | ||
type: string | ||
default: 10.1.0.0/16 | ||
description: | | ||
Network CIDR to assign to K8s service groups | ||
Network CIDR to assign to Kubernetes service groups. This must not | ||
overlap with any IP ranges assigned to nodes for pods. | ||
dns_domain: | ||
type: string | ||
default: cluster.local | ||
description: | | ||
The domain name to use for the Kubernetes cluster by the | ||
skydns service. |
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 +1,6 @@ | ||
includes: ['layer:docker', 'layer:flannel', 'layer:tls', 'interface:etcd'] | ||
includes: ['layer:leadership', 'layer:docker', 'layer:flannel', 'layer:storage', 'layer:tls', 'interface:etcd'] | ||
repo: https://github.com/mbruzek/layer-k8s.git | ||
options: | ||
storage: | ||
storage-driver: zfs | ||
mount-point: '/srv/kubernetes' |
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 |
---|---|---|
|
@@ -15,3 +15,5 @@ subordinate: false | |
requires: | ||
etcd: | ||
interface: etcd | ||
series: | ||
- 'trusty' |
Oops, something went wrong.