Skip to content

dungdm93/shipyard

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

shipyard

Template for build cloud-native stack: Kubernetes, Terraform and friends...

1. Folder structure

  • docker: Dockerfile and other stuffs for build docker images.
  • helm: Helm charts for data services

2. Coding

2.1 Helm chart

2.1.1 Test Helm template

  • Install Helm
  • Install Go Task runner
  • Run commands
    # Go to the component folder
    cd helm/<component>
    
    # Set VALUE file via environment variable
    export VALUES=examples/<file>.yaml
    
    # Update Helm dependencies
    task helm:dep
    
    # Generate manifest files in folder ./build
    task helm:gen
    
    # Apply to K8s cluster
    task helm:apply
    
    # [Optional] Clean manifest files
    task helm:clean