-
Notifications
You must be signed in to change notification settings - Fork 34
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
32fc1a1
commit 298119a
Showing
6 changed files
with
24 additions
and
24 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
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -103,10 +103,10 @@ ENV BIN_NAME=$BIN_NAME | |
LABEL name="HCP Terraform Operator" | ||
LABEL vendor="HashiCorp" | ||
LABEL release=$PRODUCT_REVISION | ||
LABEL summary="HCP Terraform Operator for Kubernetes allows managing HCP Terraform / Terraform Enterprise resources via Kubernetes Custom Resources" | ||
LABEL description="HCP Terraform Operator for Kubernetes allows managing HCP Terraform / Terraform Enterprise resources via Kubernetes Custom Resources" | ||
LABEL summary="HCP Terraform Operator for Kubernetes allows managing HCP Terraform / Terraform Enterprise resources via Kubernetes Custom Resources." | ||
LABEL description="HCP Terraform Operator for Kubernetes allows managing HCP Terraform / Terraform Enterprise resources via Kubernetes Custom Resources." | ||
|
||
LABEL maintainer="Terraform Ecosystem - Hybrid Cloud Team <[email protected]>" | ||
LABEL maintainer="HashiCorp <[email protected]>" | ||
LABEL version=$PRODUCT_VERSION | ||
LABEL revision=$PRODUCT_REVISION | ||
|
||
|
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 |
---|---|---|
|
@@ -88,7 +88,7 @@ spec: | |
url: https://github.com/hashicorp/hcp-terraform-operator | ||
maintainers: | ||
- email: [email protected] | ||
name: Terraform Ecosystem - Hybrid Cloud Team | ||
name: HashiCorp | ||
maturity: alpha | ||
minKubeVersion: 1.24.0 | ||
provider: | ||
|
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,13 +1,13 @@ | ||
apiVersion: app.terraform.io/v1alpha2 | ||
kind: AgentPool | ||
metadata: | ||
name: this | ||
name: <NAME> | ||
spec: | ||
organization: kubernetes-operator | ||
organization: <ORG_NAME> | ||
token: | ||
secretKeyRef: | ||
name: hcp-terraform-operator | ||
key: token | ||
name: this | ||
name: <SECRET_NAME> | ||
key: <SECRET_KEY> | ||
name: <NAME> | ||
agentTokens: | ||
- name: token |
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,15 +1,15 @@ | ||
apiVersion: app.terraform.io/v1alpha2 | ||
kind: Module | ||
metadata: | ||
name: this | ||
name: <NAME> | ||
spec: | ||
organization: kubernetes-operator | ||
organization: <ORG_NAME> | ||
token: | ||
secretKeyRef: | ||
name: hcp-terraform-operator | ||
key: token | ||
name: <SECRET_NAME> | ||
key: <SECRET_KEY> | ||
module: | ||
source: redeux/terraform-cloud-agent/kubernetes | ||
version: 1.0.1 | ||
workspace: | ||
id: ws-NUVHA9feCXzAmPHx | ||
id: <WORKSPACE_ID> |
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,11 +1,11 @@ | ||
apiVersion: app.terraform.io/v1alpha2 | ||
kind: Project | ||
metadata: | ||
name: this | ||
name: <NAME> | ||
spec: | ||
organization: kubernetes-operator | ||
organization: <ORG_NAME> | ||
token: | ||
secretKeyRef: | ||
name: hcp-terraform-operator | ||
key: token | ||
name: this | ||
name: <SECRET_NAME> | ||
key: <SECRET_KEY> | ||
name: <NAME> |
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,11 +1,11 @@ | ||
apiVersion: app.terraform.io/v1alpha2 | ||
kind: Workspace | ||
metadata: | ||
name: this | ||
name: <NAME> | ||
spec: | ||
organization: kubernetes-operator | ||
organization: <ORG_NAME> | ||
token: | ||
secretKeyRef: | ||
name: hcp-terraform-operator | ||
key: token | ||
name: this | ||
name: <SECRET_NAME> | ||
key: <SECRET_KEY> | ||
name: <NAME> |