Skip to content

Commit

Permalink
Update docs and CHANGELOG.md
Browse files Browse the repository at this point in the history
  • Loading branch information
GitHub Actions committed Jan 14, 2022
1 parent eaeff80 commit 0a3bd81
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 1 deletion.
3 changes: 3 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,9 @@
### Merged
- [#116](https://github.com/civo/terraform-provider-civo/pull/116) - Added the custom CNI to the Kubernetes cluster

### Commits
- [eaeff80](https://github.com/civo/terraform-provider-civo/commit/eaeff806a20b74d096047b1bbba2b3e038904281) - Fixed the descrition in the resource and added cni to the datasource

## [v1.0.7](https://github.com/civo/terraform-provider-civo/releases/tag/v1.0.7) (11 December 2021)

### Merged
Expand Down
1 change: 1 addition & 0 deletions docs/data-sources/kubernetes_cluster.md
Original file line number Diff line number Diff line change
Expand Up @@ -38,6 +38,7 @@ output "kubernetes_cluster_output" {

- **api_endpoint** (String) The base URL of the API server on the Kubernetes master node
- **applications** (String) A list of application installed
- **cni** (String) The cni for the k3s to install (the default is `flannel`) valid options are `cilium` or `flannel`
- **created_at** (String) The date where the Kubernetes cluster was create
- **dns_entry** (String) The unique dns entry for the cluster in this case point to the master
- **installed_applications** (List of Object) (see [below for nested schema](#nestedatt--installed_applications))
Expand Down
2 changes: 1 addition & 1 deletion docs/resources/kubernetes_cluster.md
Original file line number Diff line number Diff line change
Expand Up @@ -62,7 +62,7 @@ resource "civo_kubernetes_cluster" "my-cluster" {
### Optional

- **applications** (String) Comma separated list of applications to install. Spaces within application names are fine, but shouldn't be either side of the comma. Application names are case-sensitive; the available applications can be listed with the Civo CLI: 'civo kubernetes applications ls'. If you want to remove a default installed application, prefix it with a '-', e.g. -Traefik. For application that supports plans, you can use 'app_name:app_plan' format e.g. 'Linkerd:Linkerd & Jaeger' or 'MariaDB:5GB'.
- **cni** (String) The cni for the k3s to install (the default is `flannel`) valid options are `calico` or `flannel`
- **cni** (String) The cni for the k3s to install (the default is `flannel`) valid options are `cilium` or `flannel`
- **id** (String) The ID of this resource.
- **kubernetes_version** (String) The version of k3s to install (optional, the default is currently the latest available)
- **name** (String) Name for your cluster, must be unique within your account
Expand Down

0 comments on commit 0a3bd81

Please sign in to comment.