기술 자료

​
​

Development

User Acquisition

Monetization

산업 분야

Self-Hosted Deployment

Amazon Web Services

Microsoft Azure

On premises

vpctl

Self-Hosted Deployment

이 페이지는 선택한 언어로 제공되지 않습니다.
​
​
Self-Hosted Deployment
  • Overview
  • Amazon Web Services
  • Microsoft Azure
  • On premises
  • Administration
  • Security
  • vpctl
    • vpctl Architecture
    • Installation
    • Manifest reference
    • vpctl commands
    • Troubleshooting
    • Changelog
  1. Self-Hosted Deployment (previously called Unity Virtual Private Cloud)
  2. vpctl command-line tool

Manifest reference

Reference for manifest.yaml, including the schema, initialization and validation commands, and an annotated example.
읽는 시간 3분
최근 업데이트: 한 달 전

manifest.yaml
is the single input that drives every vpctl operation. It enforces the schema at load time by using an embedded CUE schema.
Commit it to version control.: the manifest acts as a controlled input for release upgrades: bumping
releaseVersion
and any other field, and rerunning
vpctl release generate
produces a reviewable diff your team can approve before deployment, and Argo CD or your CD picks it up from there. The manifest contains no secrets: secrets are generated separately by
vpctl secret generate
from
secrets.import.yaml
, which lives in your CI secret store or a vault, never in Git.

Initialize a manifest

If you don't already have one, generate one interactively:
vpctl manifest init
This walks you through platform, release version, registry, namespace, autoscaling, monitoring, and ingress settings. The output defaults to
./manifest.yaml
, you can override with
--output
.

Validate a manifest

vpctl manifest validatevpctl manifest validate --file path/to/manifest.yaml
Validates against the embedded CUE schema. The validation catches missing required fields, disallowed values, and cross-field rules. For example,
maxReplicas >= minReplicas
, a TLS certificate is required when TLS is enabled.

Annotated example

A minimal on-premises manifest looks like this:
# manifest.yamlplatform: onprem # required: only "onprem" is documented for customer usereleaseVersion: 0.15.0 # required: matches the release tag in the Unity registryartifactSync: sourceRepository: uccmpprivatecloud.azurecr.io concurrency: 5 # parallel image/ORAS sync workers (default: 5)deployment: # helmChartMode: "remote" # default "local": charts come from the release package helm: concurrency: 4 # optional, default 1; deploy charts within the same wave # in parallel (helm format only). Waves remain sequential. # The `--concurrency` CLI flag overrides this when both are set. argocd: # defaults for `release generate --format argocd` repoURL: "git@github.com:your-org/your-argocd-charts.git" pathPrefix: "" # subdirectory in the repo (e.g. "cluster1/") destinationServer: "https://kubernetes.default.svc" targetRevision: "main"configuration: # imageVariant: hardened # optional. When set, vpctl appends the matching # suffix (such as -hardened) to image versions that # declare the variant. Omit for default images. networking: appDomain: uam.example.com # the FQDN your customers reach the app at # ipFamily: ipv6 # optional. "ipv4" (default) or "ipv6" for # single-stack IPv6 clusters. Omit for IPv4. allowedIngressCIDRs: # IPs allowed to reach the LoadBalancer - "203.0.113.0/24" ingress: traefik: type: LoadBalancer tls: enabled: true certificate: traefik-tls-cert # name of the K8s Secret holding the cert # nodePorts: # optional. Pin nodePorts for the traefik entrypoints. # web: 32080 # Omit (default) to let Kubernetes auto-assign; the # websecure: 32443 # assigned port stays stable for the life of the service. # trustedCaSecretName: my-ca-bundle # K8s Secret (key ca-bundle.crt) mounted into Argo workflow pods; set when ingress TLS is signed by a private CA serviceMesh: istio: enabled: false kubernetes: namespace: asset-solutions # namespace where workloads are deployed dnsService: kube-dns # CoreDNS Service in kube-system, for example rke2-coredns-rke2-coredns on RKE2 docker: repository: registry.example.com # your registry (used after `artifact sync`) namespace: asset-solutions # subpath/namespace within the registry imagePullSecret: regcred # K8s Secret holding registry pull credentials autoscaling: minReplicas: 1 maxReplicas: 10 storage: defaultStorageClass: gp3 readWriteManyStorageClass: efs transformations: parallelism: 30 # max concurrent transformation workflows monitoring: database: enabled: true prometheus: enabled: true # auto-detected if Prometheus is already installed logCollection: enabled: true # Loki + Alloy authentication: x509: enabled: false # caSecretName: x509-ca-cert # required when enabled infrastructure: sizing: medium # small | medium (default) | large # singleNode: true # optional: collapse infrastructure components to # single-replica for ephemeral test clusters. # Not for production. # components: { ... } # per-component CPU/memory/storage overrides

Full schema reference

The annotated example above covers the most common fields. For the complete field list which include every type, default value, constraint, and cross-field rule, print the schema your installed vpctl is using:
vpctl manifest schema
To export the CUE schema for standalone validation (useful in CI, without installing vpctl):
vpctl manifest schema --export manifest.cuecue vet manifest.cue manifest.yaml -d '#Manifest'

Auto-discovery

vpctl searches upward from the current working directory for
manifest.yaml
. Pass
--manifest <path>
to override.

Copyright © 2026 Unity Technologies
법률 정보개인정보 처리방침쿠키Documentation Terms of Use개인 정보 판매 또는 공유 금지개인정보 보호 선택(쿠키 설정)

'Unity', Unity 로고 및 기타 Unity 상표는 미국 및 기타 지역 내 Unity Technologies 또는 그 계열사의 상표 또는 등록상표입니다(자세한 내용은 여기에서 확인하세요). 기타 명칭 또는 브랜드는 해당 소유자의 상표입니다.

일부 페이지는 편의를 위해 기계 번역되었으며 부정확한 내용이 있을 수 있습니다. 정보가 상충되는 경우, 영어 버전을 우선으로 참조하세요.

  • 보고 있는 페이지
    • Initialize a manifest

    • Validate a manifest

    • Annotated example

    • Full schema reference

    • Auto-discovery


이 페이지의 문제 보고