Compare commits

..

3 Commits

Author SHA1 Message Date
1059f17fdb ci: fix drift detection
All checks were successful
continuous-integration/drone/push Build is passing
2022-07-17 02:06:38 +02:00
e89bf20aaf add: kube-state-metrics 2022-07-17 02:05:37 +02:00
3c963bf6b8 ci: fix drift detection
All checks were successful
continuous-integration/drone/push Build is passing
2022-06-14 00:24:10 +02:00
3 changed files with 2 additions and 3 deletions

View File

@@ -69,7 +69,6 @@ Version:
The following resources are used by this module: The following resources are used by this module:
- [helm_release.coredns](https://registry.terraform.io/providers/hashicorp/helm/2.5.1/docs/resources/release) (resource) - [helm_release.coredns](https://registry.terraform.io/providers/hashicorp/helm/2.5.1/docs/resources/release) (resource)
- [helm_release.kube_state_metrics](https://registry.terraform.io/providers/hashicorp/helm/2.5.1/docs/resources/release) (resource)
- [helm_release.metrics_server](https://registry.terraform.io/providers/hashicorp/helm/2.5.1/docs/resources/release) (resource) - [helm_release.metrics_server](https://registry.terraform.io/providers/hashicorp/helm/2.5.1/docs/resources/release) (resource)
- [helm_release.traefik](https://registry.terraform.io/providers/hashicorp/helm/2.5.1/docs/resources/release) (resource) - [helm_release.traefik](https://registry.terraform.io/providers/hashicorp/helm/2.5.1/docs/resources/release) (resource)
- [kubernetes_cluster_role.ci_cd](https://registry.terraform.io/providers/hashicorp/kubernetes/latest/docs/resources/cluster_role) (resource) - [kubernetes_cluster_role.ci_cd](https://registry.terraform.io/providers/hashicorp/kubernetes/latest/docs/resources/cluster_role) (resource)

View File

@@ -1,7 +1,7 @@
locals { locals {
pool_name = "kubernetes-workers" pool_name = "kubernetes-workers"
worker_id_start = 80 worker_id_start = 80
worker_count = 2 worker_count = 1
} }
resource "libvirt_pool" "kubernetes_workers" { resource "libvirt_pool" "kubernetes_workers" {