Tag_Archive: #K8s

· 2 min read

AWS EKS via eksctl

This article covers AWS EKS via eksctl, originally published as a secure GitHub Gist snippet. apiVersion: eksctl.io/v1alpha5 kind: ClusterConfig metadata: name: eksctl-us-west-2-managed region: us-west-2 vpc: id: vpc-0b953326cd7a2f917 subnets: public: us-west-2a: id: subnet-0947f8d8495f046d6 us-west-2c: id: subnet-0d4ae0a69651a70f3 #totally isolated subnets, no NAT private: us-west-2a: id: … ... read more »

· 8 min read

Salt water to Helm Chart's wheel

Flexible way to perform configuration management actions in the Helm chart’s. We uses years Salt, Chef, Ansible, …​ to do complex configuration steps, but when it came to implement a new feature in Helm Chart app folks once again tend to fall back to bash, curl and the Helm hell templates. TL;DR 🔗︎# My use-case is simple. I want to update Influxdb chart . and provide way to: create database … ... read more »