项目作者: hashicorp

项目描述 :
Helm chart to install Terraform Cloud Operator and other associated components.
高级语言: Shell
项目地址: git://github.com/hashicorp/terraform-helm.git
创建时间: 2019-12-17T14:34:49Z
项目社区:https://github.com/hashicorp/terraform-helm

开源协议:Mozilla Public License 2.0

下载


Terraform Cloud Operator Helm Chart

This repository contains the official HashiCorp Helm chart for installing
and configuring the Terraform Cloud Operator on Kubernetes. This chart supports multiple use
cases of Terraform on Kubernetes depending on the values provided.

This chart is hosted on the official HashiCorp helm chart repository.

Prerequisites

To use the charts here, Helm must be installed in your
Kubernetes cluster. Setting up Kubernetes and Helm and is outside the scope
of this README. Please refer to the Kubernetes and Helm documentation.

The versions required are:

  • Helm +3.0.1 - This is the earliest version of Helm tested. It is possible
    it works with earlier versions but this chart is untested for those versions.
  • Kubernetes 1.15+ - This is the earliest version of Kubernetes tested.
    It is possible that this chart works with earlier versions but it is
    untested.

In addition to Helm, you must also have a:

  • Terraform Cloud organization - Create an organization on Terraform
    Cloud/Enterprise.
  • Terraform Cloud Team API Token - Generate a
    team API token for the
    Terraform Cloud organization you want to use. Make sure the team at least
    has privileges to manage workspaces.

Usage

Before installing the chart, you must create two Kubernetes secrets:

  1. credentials file contents with Terraform Cloud Team API token. See
    Terraform Cloud Configuration File Syntax
    for proper format.

    1. $ kubectl -n $NAMESPACE create secret generic terraformrc --from-file=credentials
  2. Sensitive variables for a workspace.

    1. $ kubectl -n $NAMESPACE create secret generic workspacesecrets --from-literal=secret_key=abc123

    To use the charts, you must add the HashiCorp Helm Chart repository.

  1. $ helm repo add hashicorp https://helm.releases.hashicorp.com
  2. $ helm search repo hashicorp/terraform
  3. $ helm install --namespace ${RELEASE_NAMESPACE} hashicorp/terraform --generate-name
  1. NAME CHART VERSION APP VERSION DESCRIPTION
  2. hashicorp/terraform 1.0 Install and configure Terraform Cloud Operator ...
  1. NAME: terraform-1589480669
  2. LAST DEPLOYED: Thu May 14 11:24:32 2020
  3. NAMESPACE: operator
  4. STATUS: deployed
  5. REVISION: 1
  6. NOTES:
  7. Thank you for installing HashiCorp Terraform Cloud Operator!
  8. Now that you have deployed HashiCorp Terraform Cloud Operator, you should look over the docs on using
  9. Terraform with Kubernetes available here:
  10. https://github.com/hashicorp/terraform-k8s/blob/master/README.md
  11. Your release is named terraform-1589480669. To learn more about the release, try:
  12. $ helm status terraform-1589480669
  13. $ helm get terraform-1589480669

Please see the many options supported in the values.yaml
file.

To create a Terraform workspace, you can create a separate Helm chart to deploy
the custom resource or examine the example under example/. Helm does not currently
support a wait function before deletion, which will cause custom resources to remain
behind.

Note that the Helm chart automatically installs all Custom Resource Definitions under
the crds/ directory. As a result, any updates to the schema must be manually copied into
the directory and removed from the Kubernetes cluster:

  1. $ kubectl delete crd workspaces.app.terraform.io

If the CRD is not updated correctly, you will not be able to create a Workspace Custom Resource.