Skip to content
This repository has been archived by the owner on Oct 9, 2020. It is now read-only.

urcomputeringpal/actions-kustomize

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

8 Commits
 
 
 
 
 
 
 
 

Repository files navigation

actions-kustomize

A GitHub Action for Kustomize. Contains kubectl as well. Works well with urcomputeringpal/actions-kubeconfig.

Usage

action "kustomize build" {
  needs = "kube config"
  uses = "urcomputeringpal/actions-kustomize@master"
  args = "build | tee $HOME/yaml"
}

action "kubectl apply" {
  needs = "kustomize build"
  uses = "urcomputeringpal/actions-kustomize@master"
  runs = "/bin/bash -c"
  args = ["kubectl apply -f $HOME/yaml"]
}