macos-setup
🐱 Source ☕️ Java SampleGo Sample Angular Sample
  • Mac Setup
  • Getting Started
    • Xcode
    • Homebrew
    • System Preferences
    • Essentials
    • Dotfiles
  • Applications
    • Ghostty
    • Sublime-text
    • JetBrains
    • VSCode
    • Xcode
    • Marta
    • Benthos
    • OrbStack
    • Traefik
    • n8n
  • Platforms
    • Java
    • Node
      • Bub
      • NPM
      • PNPM
      • Turborepo
    • GoLang
    • Rust
    • Python
      • Agno AI
  • DevOps
    • Development Workflow
      • Git
        • GitHub CLL
      • GitOps
      • Documentation
      • mkcert
      • YubiKey
    • Monorepo
    • dnsmasq
    • Docker
    • Skaffold
    • Kubernetes
    • Helm
    • Kustomize
    • kustomizer
    • Terraform
    • Security
    • Cloud
      • gcloud
      • azure
      • aws
  • Tips
    • Git
    • MacOS
Powered by GitBook
On this page
  • Install
  • Usage

Was this helpful?

Edit on GitHub
  1. DevOps

kustomizer

PreviousKustomizeNextTerraform

Last updated 2 years ago

Was this helpful?

is a package manager for distributing Kubernetes configuration as OCI artifacts.

Install

brew install stefanprodan/tap/kustomizer

Usage

# Login to GitHub Container Registry
export GITHUB_USER="YOUR-GITHUB-USERNAME"
echo <PAT> | docker login ghcr.io -u ${GITHUB_USER} --password-stdin

# Push image along with final Kubernetes artifacts to GHCR
export DOCKER_IMAGE="ghcr.io/${GITHUB_USER}/demo-app"
export DOCKER_VERSION="1.0.0"
kustomizer push artifact oci://${DOCKER_IMAGE}:${DOCKER_VERSION} \
    -k ./infra/deploy/
Kustomizer