terraform-provider-kubernetes
terraform-provider-kubernetes copied to clipboard
Terraform Kubernetes provider
### Description The common walkaround for missing CRDs is to use other providers like `kubectl_manifest` or `helm_release`. The deferred flag on `kubernetes_manifest` will be more elegant solution, with the same...
### Description Add cluster extensions argument to the provider enabling to pass [additional configuration to the exec plugin](https://kubernetes.io/docs/reference/access-authn-authz/authentication/#configuration). ### Potential Terraform Configuration ```hcl provider "kubernetes" { host = "https://..." cluster_ca_certificate...
### Description Share GKE Exec plugin example so terraform can create cluster and continue configuring Kubernetes and HELM automatically ### Potential Terraform Configuration ```hcl kubernetes { host = var.cluster_endpoint #...
### Description config_map_v1_data same for secret_v1_data ### Potential Terraform Configuration ```hcl resource "kubernetes_secret_v1_data" "example" { metadata { name = "my-config" } data = { "owner" = "myteam" } } ```...
Hey, there seems to be an issue with lists in `kubernetes_manifest`. ### Terraform Version, Provider Version and Kubernetes Version ``` Terraform version: 1.3.2 Kubernetes provider version: 1.14.0 Kubernetes version: 1.22.12...
### Description I want to use my own serviceaccount to run a Cronjob in Kubernetes. Now it looks like the cronjob uses the "default" account from the namespace it's located...
### Description Fixes #2471 In this test, we are leveraging `skipIfNoLoadBalancersAvailable` to ensure it only runs in environments that support `Kubernetes` LoadBalancer services. This is necessary because common local environments,...
### Description ### Acceptance tests - [ ] Have you added an acceptance test for the functionality being added? - [ ] Have you run the acceptance tests on this...
### Description PodSecurityPolicy will be removed from the Kubernetes API in version 1.25. We'll have to either remove this feature from the provider, or adapt it to only run against...
### Description ### Acceptance tests - [ ] Have you added an acceptance test for the functionality being added? - [ ] Have you run the acceptance tests on this...