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

OJFord/terraform-module-helm3

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

5 Commits
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Simple Helm Chart application with state managed by Terraform.

That is, use helm template and kubectl apply (so no helm rollback) with Terraform managing lifecycle instead of Helm. As a result, it should work with Helm v2 (but won't use Tiller since we're applying with kubectl) or v3 (which has no Tiller anyway).

Caveats:

  • Lose helm functionality, as mentioned above - this is really just for using charts to manage configuration
  • Assumes single user (local storage of rendered values) - this is avoidable, I just haven't yet