ci-rl pool was permanently disabled (enable_ci_rl_pool=false), all training consolidated on ci-training (L40S). foxhunt-binaries S3 bucket was never created — binaries now deploy via shared PVC. Also: deleted orphaned infra/live/production/ci-runner/ directory, cleaned up stale Grafana ReplicaSets, recreated missing grafana PVC, deleted orphaned Released PV, synced runner Helm configmap. Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
47 lines
1.4 KiB
HCL
47 lines
1.4 KiB
HCL
output "cluster_id" {
|
|
description = "ID of the Kapsule cluster"
|
|
value = scaleway_k8s_cluster.foxhunt.id
|
|
}
|
|
|
|
output "kubeconfig" {
|
|
description = "Kubeconfig file content for the cluster"
|
|
value = scaleway_k8s_cluster.foxhunt.kubeconfig[0].config_file
|
|
sensitive = true
|
|
}
|
|
|
|
output "apiserver_url" {
|
|
description = "URL of the Kubernetes API server"
|
|
value = scaleway_k8s_cluster.foxhunt.apiserver_url
|
|
}
|
|
|
|
output "foxhunt_pool_id" {
|
|
description = "ID of the foxhunt app services node pool"
|
|
value = scaleway_k8s_pool.foxhunt.id
|
|
}
|
|
|
|
output "platform_pool_id" {
|
|
description = "ID of the platform infrastructure node pool"
|
|
value = var.enable_platform_pool ? scaleway_k8s_pool.platform[0].id : ""
|
|
}
|
|
|
|
output "gitlab_pool_id" {
|
|
description = "ID of the GitLab node pool"
|
|
value = var.enable_gitlab_pool ? scaleway_k8s_pool.gitlab[0].id : ""
|
|
}
|
|
|
|
output "ci_compile_cpu_pool_id" {
|
|
description = "ID of the CPU compile node pool (POP2-HC)"
|
|
value = var.enable_ci_compile_cpu_pool ? scaleway_k8s_pool.ci_compile_cpu[0].id : ""
|
|
}
|
|
|
|
output "ci_training_pool_id" {
|
|
description = "ID of the CI training node pool (L40S)"
|
|
value = var.enable_ci_training_pool ? scaleway_k8s_pool.ci_training[0].id : ""
|
|
}
|
|
|
|
output "private_network_id" {
|
|
description = "ID of the VPC private network the cluster is attached to"
|
|
value = scaleway_vpc_private_network.foxhunt.id
|
|
}
|
|
|