Skip to content

Latest commit

 

History

History
29 lines (24 loc) · 743 Bytes

kubernetes-gke.md

File metadata and controls

29 lines (24 loc) · 743 Bytes
sidebar_label title description hide_table_of_contents type category sidebar_class_name tags
Kubernetes
Kubernetes
Learn about the Kubernetes pack and how you can use it with your host clusters.
true
integration
kubernetes
amd64
hide-from-sidebar
packs
kubernetes

Terraform

You can retrieve details about the Kubernetes pack for AWS EKS by using the following Terraform code.

data "spectrocloud_registry" "public_registry" {
  name = "Public Repo"
}

data "spectrocloud_pack_simple" "k8s" {
  name    = "kubernetes-gke"
  version = "1.29"
  type = "helm"
  registry_uid = data.spectrocloud_registry.public_registry.id
}