Skip to content
This repository has been archived by the owner on Sep 30, 2020. It is now read-only.

Commit

Permalink
Bring getting started docs upto date. Includes: Fixing link to cluste…
Browse files Browse the repository at this point in the history
…r yaml in prerequisites.md and added the extra files now found when render in run in step-2-render.md (#1560)
  • Loading branch information
Kyle Hodgetts authored and mumoshu committed Mar 1, 2019
1 parent 1ec48f3 commit 5f14e23
Show file tree
Hide file tree
Showing 2 changed files with 48 additions and 8 deletions.
2 changes: 1 addition & 1 deletion docs/getting-started/prerequisites.md
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ What `kube-aws` does modify are:
* Adding one or more subnet(s) to an existing VPC specified by the `vpcId`
* Associating one or more subnet(s) to an existing route table specified by the `routeTableId`

See [`cluster.yaml`](https://github.com/kubernetes-incubator/kube-aws/blob/master/core/controlplane/config/templates/cluster.yaml) for more details.
See [`cluster.yaml`](https://github.com/kubernetes-incubator/kube-aws/blob/master/builtin/files/cluster.yaml.tmpl) for more details.

All the other configurations for existing AWS resources must be done properly by users before `kube-aws` is run.

Expand Down
54 changes: 47 additions & 7 deletions docs/getting-started/step-2-render.md
Original file line number Diff line number Diff line change
Expand Up @@ -120,8 +120,14 @@ There will now be a `cluster.yaml` file in the asset directory. This is the main
```sh

ls -R credentials/
admin-key.pem apiserver-key.pem ca-key.pem etcd-client-key.pem etcd-key.pem worker-key.pem
admin.pem apiserver.pem ca.pem etcd-client.pem etcd.pem worker.pem
admin-key.pem encryption-config.yaml kiam-ca.pem service-account-key.pem
admin.pem etcd-client-key.pem kiam-server-key.pem tokens.csv
apiserver-aggregator-key.pem etcd-client.pem kiam-server.pem worker-ca-key.pem
apiserver-aggregator.pem etcd-key.pem kube-controller-manager-key.pem worker-ca.pem
apiserver-key.pem etcd-trusted-ca.pem kube-controller-manager.pem worker-key.pem
apiserver.pem etcd.pem kube-scheduler-key.pem worker.pem
ca-key.pem kiam-agent-key.pem kube-scheduler.pem
ca.pem kiam-agent.pem kubelet-tls-bootstrap-token
```

### Render cluster assets
Expand All @@ -141,20 +147,54 @@ $ tree
├── credentials
│   ├── admin-key.pem
│   ├── admin.pem
│   ├── apiserver-aggregator-key.pem
│   ├── apiserver-aggregator.pem
│   ├── apiserver-key.pem
│   ├── apiserver.pem
│   ├── ca-key.pem
│   ├── ca.pem
│   ├── encryption-config.yaml
│   ├── etcd-client-key.pem
│   ├── etcd-client.pem
│   ├── etcd-key.pem
│   ├── etcd-trusted-ca.pem -> ca.pem
│   ├── etcd.pem
│   ├── kiam-agent-key.pem
│   ├── kiam-agent.pem
│   ├── kiam-ca.pem
│   ├── kiam-server-key.pem
│   ├── kiam-server.pem
│   ├── kube-controller-manager-key.pem
│   ├── kube-controller-manager.pem
│   ├── kube-scheduler-key.pem
│   ├── kube-scheduler.pem
│   ├── kubelet-tls-bootstrap-token
│   ├── service-account-key.pem
│   ├── tokens.csv
│   ├── worker-ca-key.pem -> ca-key.pem
│   ├── worker-ca.pem -> ca.pem
│   ├── worker-key.pem
│   └── worker.pem
│   ├── etcd-key.pem
│   └── etcd.pem
│   ├── etcd-client-key.pem
│   └── etcd-client.pem
├── kubeconfig
├── stack-template.json
├── plugins
│   └── aws-iam-authenticator
│   ├── files
│   │   ├── authentication-token-webhook-config.yaml
│   │   ├── controller-kubeconfig.yaml
│   │   └── worker-kubeconfig.yaml
│   ├── manifests
│   │   ├── aws-auth-cm.yaml
│   │   └── daemonset.yaml
│   └── plugin.yaml
├── stack-templates
│   ├── control-plane.json.tmpl
│   ├── etcd.json.tmpl
│   ├── network.json.tmpl
│   ├── node-pool.json.tmpl
│   └── root.json.tmpl
└── userdata
├── cloud-config-controller
├── cloud-config-etcd
└── cloud-config-worker
```

Expand Down

0 comments on commit 5f14e23

Please sign in to comment.