Skip to content

Latest commit

 

History

History
29 lines (24 loc) · 751 Bytes

kubernetes-custom.md

File metadata and controls

29 lines (24 loc) · 751 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 custom clouds by using the following Terraform code.

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

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