I hereby claim:
- I am dwsr on github.
- I am dwsr (https://keybase.io/dwsr) on keybase.
- I have a public key whose fingerprint is 2EAC D8FE CD3B 3DD7 83A9 0545 40F7 6262 AFD9 82E3
To claim this, I am signing this object:
| function Import-GoogleToEXOGroup { | |
| <# | |
| .SYNOPSIS | |
| Import CSV of Google Groups into Office 365 as Distribution Groups | |
| .DESCRIPTION | |
| Import CSV of Google Groups into Office 365 as Distribution Groups | |
| .PARAMETER Group |
| Apache License | |
| Version 2.0, January 2004 | |
| http://www.apache.org/licenses/ | |
| TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION | |
| 1. Definitions. | |
| "License" shall mean the terms and conditions for use, reproduction, |
| #!/opt/chef/embedded/bin/ruby | |
| require 'chef' | |
| require 'logger' | |
| config_file = '/etc/chef/client.rb' | |
| known_hosts_file = "#{ENV['HOME']}/known_hosts" | |
| known_hosts = [] | |
| logger = Logger.new(STDOUT) | |
| # Change to Logger::DEBUG for debug output |
I hereby claim:
To claim this, I am signing this object:
Helm attempts to solve a specific problem: How do you package up a bunch of Kubernetes manifests in a way that's (relatively) easy to consume.
For simple applications, this works out pretty well. You get a few knobs to tweak on the installation (such as whether or not you want the Chart to create RBAC resources), Helm renders a stream of YAML and then applies it to your cluster. Where this breaks down is when you try to do anything more complex, and that break down happens in 2 areas: Maintenance and Usability
Sufficiently complex (read: any) Helm charts can be thought of as a piece of software. It takes a series of inputs (the values) and produces a series of outputs (the YAML stream of Kubernetes objects). With "traditional" languages, there's facilities for syntax checking, static analysis, testing, etc. that help ensure the software both functions correctly now and in the future. The Helm ecosystem has some of those same things (e.g. helm lint) as well, however they're generally limited to treating th