kubes 0.5.1 → 0.6.4

Sign up to get free protection for your applications and to get access to all the features.
Files changed (131) hide show
  1. checksums.yaml +4 -4
  2. data/.gcloudignore +22 -0
  3. data/.gitignore +1 -1
  4. data/CHANGELOG.md +22 -0
  5. data/Dockerfile +6 -6
  6. data/Dockerfile.alpine +20 -0
  7. data/README.md +53 -7
  8. data/docker/install/docker.sh +8 -0
  9. data/docker/install/gcloud.sh +18 -0
  10. data/docker/install/kubectl.sh +4 -0
  11. data/docs/_docs/config/hooks/kubes.md +1 -0
  12. data/docs/_docs/config/reference.md +1 -0
  13. data/docs/_docs/dsl/multiple-resources.md +3 -1
  14. data/docs/_docs/dsl/resources/secret.md +19 -2
  15. data/docs/_docs/generators.md +4 -4
  16. data/docs/_docs/helpers.md +4 -2
  17. data/docs/_docs/helpers/aws/advanced.md +10 -0
  18. data/docs/_docs/helpers/aws/advanced/secrets.md +131 -0
  19. data/docs/_docs/helpers/aws/advanced/ssm.md +78 -0
  20. data/docs/_docs/helpers/aws/secrets.md +25 -83
  21. data/docs/_docs/helpers/aws/ssm.md +20 -38
  22. data/docs/_docs/helpers/custom.md +1 -0
  23. data/docs/_docs/helpers/google/advanced.md +10 -0
  24. data/docs/_docs/helpers/google/advanced/secrets.md +78 -0
  25. data/docs/_docs/helpers/google/gke.md +92 -0
  26. data/docs/_docs/helpers/google/secrets.md +30 -27
  27. data/docs/_docs/intro.md +2 -11
  28. data/docs/_docs/layering.md +2 -0
  29. data/docs/_docs/layering/mix.md +99 -0
  30. data/docs/_docs/patterns/multiple-envs.md +55 -0
  31. data/docs/_docs/plugins.md +12 -0
  32. data/docs/_docs/plugins/aws.md +17 -0
  33. data/docs/_docs/plugins/google.md +18 -0
  34. data/docs/_docs/variables.md +12 -0
  35. data/docs/_docs/variables/advanced.md +64 -0
  36. data/docs/_docs/variables/basic.md +139 -0
  37. data/docs/_docs/vs.md +10 -0
  38. data/docs/_docs/vs/custom.md +109 -0
  39. data/docs/_docs/vs/helm.md +243 -0
  40. data/docs/_docs/vs/kustomize.md +167 -0
  41. data/docs/_includes/helpers/generator.md +13 -0
  42. data/docs/_includes/intro/features.md +11 -0
  43. data/docs/_includes/layering/layers.md +11 -15
  44. data/docs/_includes/plugins/gke-config.md +6 -0
  45. data/docs/_includes/sidebar.html +45 -0
  46. data/docs/_includes/variables/generator.md +12 -0
  47. data/docs/_includes/vs/article.md +1 -0
  48. data/docs/_includes/vs/kubes/layering.md +10 -0
  49. data/docs/_includes/vs/kubes/structure.md +24 -0
  50. data/docs/_reference/kubes-new-help.md +15 -0
  51. data/docs/_reference/kubes-new-helper.md +25 -0
  52. data/docs/_reference/kubes-new-resource.md +56 -0
  53. data/docs/_reference/kubes-new-variable.md +20 -0
  54. data/docs/_reference/kubes-new.md +6 -38
  55. data/kubes.gemspec +2 -2
  56. data/lib/kubes.rb +4 -3
  57. data/lib/kubes/auth.rb +13 -1
  58. data/lib/kubes/auth/base.rb +21 -0
  59. data/lib/kubes/auth/ecr.rb +1 -15
  60. data/lib/kubes/auth/gcr.rb +24 -0
  61. data/lib/kubes/cli/apply.rb +0 -1
  62. data/lib/kubes/cli/help/new/helper.md +4 -0
  63. data/lib/kubes/cli/help/{new.md → new/resource.md} +3 -3
  64. data/lib/kubes/cli/new.rb +12 -94
  65. data/lib/kubes/cli/new/helper.rb +24 -0
  66. data/lib/kubes/cli/new/resource.rb +97 -0
  67. data/lib/kubes/cli/new/variable.rb +16 -0
  68. data/lib/kubes/cli/prune.rb +4 -2
  69. data/lib/kubes/command.rb +1 -1
  70. data/lib/kubes/compiler/decorator/base.rb +1 -1
  71. data/lib/kubes/compiler/dsl/core/base.rb +6 -9
  72. data/lib/kubes/compiler/layering.rb +21 -7
  73. data/lib/kubes/compiler/shared/custom_variables.rb +38 -0
  74. data/lib/kubes/compiler/shared/plugin_helpers.rb +14 -0
  75. data/lib/kubes/compiler/strategy.rb +7 -6
  76. data/lib/kubes/compiler/strategy/base.rb +59 -2
  77. data/lib/kubes/compiler/strategy/dsl.rb +0 -29
  78. data/lib/kubes/compiler/strategy/erb.rb +10 -22
  79. data/lib/kubes/compiler/util/normalize.rb +6 -3
  80. data/lib/kubes/compiler/util/yaml_dump.rb +4 -4
  81. data/lib/kubes/config.rb +14 -0
  82. data/lib/kubes/hooks/builder.rb +20 -5
  83. data/lib/kubes/hooks/concern.rb +1 -1
  84. data/lib/kubes/kubectl/batch.rb +7 -0
  85. data/lib/kubes/plugin.rb +14 -0
  86. data/lib/kubes/util/sh.rb +1 -1
  87. data/lib/kubes/version.rb +1 -1
  88. data/lib/templates/new/helper/file.rb +2 -0
  89. data/lib/templates/new/{dsl → resource/dsl}/backend_config.rb +0 -0
  90. data/lib/templates/new/{dsl → resource/dsl}/config_map.rb +0 -0
  91. data/lib/templates/new/{dsl → resource/dsl}/daemon_set.rb +0 -0
  92. data/lib/templates/new/{dsl → resource/dsl}/deployment.rb +0 -0
  93. data/lib/templates/new/{dsl → resource/dsl}/ingress.rb +0 -0
  94. data/lib/templates/new/{dsl → resource/dsl}/job.rb +0 -0
  95. data/lib/templates/new/{dsl → resource/dsl}/managed_certificate.rb +0 -0
  96. data/lib/templates/new/{dsl → resource/dsl}/namespace.rb +0 -0
  97. data/lib/templates/new/{dsl → resource/dsl}/network_policy.rb +0 -0
  98. data/lib/templates/new/{dsl → resource/dsl}/pod.rb +0 -0
  99. data/lib/templates/new/{dsl → resource/dsl}/role.rb +0 -0
  100. data/lib/templates/new/{dsl → resource/dsl}/role_binding.rb +0 -0
  101. data/lib/templates/new/{dsl → resource/dsl}/secret.rb +0 -0
  102. data/lib/templates/new/{dsl → resource/dsl}/service.rb +0 -0
  103. data/lib/templates/new/{dsl → resource/dsl}/service_account.rb +0 -0
  104. data/lib/templates/new/{yaml → resource/yaml}/backend_config.yaml +0 -0
  105. data/lib/templates/new/{yaml → resource/yaml}/config_map.yaml +0 -0
  106. data/lib/templates/new/{yaml → resource/yaml}/daemon_set.yaml +0 -0
  107. data/lib/templates/new/{yaml → resource/yaml}/deployment.yaml +0 -0
  108. data/lib/templates/new/{yaml → resource/yaml}/ingress.yaml +0 -0
  109. data/lib/templates/new/{yaml → resource/yaml}/job.yaml +0 -0
  110. data/lib/templates/new/{yaml → resource/yaml}/managed_certificate.yaml +0 -0
  111. data/lib/templates/new/{yaml → resource/yaml}/namespace.yaml +0 -0
  112. data/lib/templates/new/{yaml → resource/yaml}/network_policy.yaml +0 -0
  113. data/lib/templates/new/{yaml → resource/yaml}/pod.yaml +0 -0
  114. data/lib/templates/new/{yaml → resource/yaml}/role.yaml +0 -0
  115. data/lib/templates/new/{yaml → resource/yaml}/role_binding.yaml +0 -0
  116. data/lib/templates/new/{yaml → resource/yaml}/secret.yaml +0 -0
  117. data/lib/templates/new/{yaml → resource/yaml}/service.yaml +0 -0
  118. data/lib/templates/new/{yaml → resource/yaml}/service_account.yaml +0 -0
  119. data/lib/templates/new/variable/file.rb +1 -0
  120. data/spec/fixtures/multiple-files/{deployment-1.rb → .kubes/resources/web/deployment-1.rb} +0 -0
  121. data/spec/fixtures/multiple-files/{deployment-2.rb → .kubes/resources/web/deployment-2.rb} +0 -0
  122. data/spec/fixtures/project/.kubes/resources/{deployment.rb → web/deployment.rb} +0 -0
  123. data/spec/fixtures/project/.kubes/resources/{foobar.rb → web/empty.rb} +0 -0
  124. data/spec/fixtures/project/.kubes/resources/{service.rb → web/service.rb} +1 -1
  125. data/spec/fixtures/syntax/{network_policy.rb → .kubes/resources/web/network_policy.rb} +0 -0
  126. data/spec/fixtures/syntax/{pod.rb → .kubes/resources/web/pod.rb} +0 -0
  127. data/spec/kubes/compiler/strategy/dsl_spec.rb +2 -2
  128. data/spec/kubes/compiler_spec.rb +1 -1
  129. data/spec/kubes/dsl/network_policy_spec.rb +1 -1
  130. data/spec/kubes/dsl/pod_spec.rb +1 -1
  131. metadata +101 -56
@@ -0,0 +1,10 @@
1
+ ---
2
+ title: Kubes vs. Other Tools
3
+ ---
4
+
5
+ Here are some useful comparisons to help you compare Kubes vs other tools in the ecosystem:
6
+
7
+ {% assign docs = site.docs | where: "categories","vs" %}
8
+ {% for doc in docs -%}
9
+ * [{{ doc.nav_text }}]({{ doc.url }})
10
+ {% endfor %}
@@ -0,0 +1,109 @@
1
+ ---
2
+ title: Kubes vs Custom Solutions
3
+ nav_text: Custom Solutions
4
+ categories: vs
5
+ ---
6
+
7
+ Kubernetes provide a great platform to run and manage Docker containers. The `kubectl` command how you usually interact with a Kubernetes cluster. It does its job well and is quite a powerful tool.
8
+
9
+ {% include vs/article.md %}
10
+
11
+ ## Kubernetes Questions
12
+
13
+ With Kubernetes, you usually use `kubectl` commands to deploy Docker images and run them on a Kubernetes cluster. As you get your Kubernetes applications production-ready, you'll have to answer many questions:
14
+
15
+ * How do you create multiple environments like dev and prod with the same code and not duplicate the YAML?
16
+ * How you handle creating service accounts and managing cloud permissions like AWS IAM, Google Service Accounts, etc?
17
+ * How will we build the Docker image and update Docker image?
18
+ * How do you deploy updated Kubernetes YAML settings in a controlled manner?
19
+
20
+ ## Kubectl with Simple Wrappers
21
+
22
+ Most folks start off with `kubectl` commands to create their Kubernetes resources. It's simple. It's also important to learn how to use `kubectl` commands to establish fundamentals. Eventually, you grow tired of typing the same commands repeatedly, though. So you write a wrapper bash script. Example:
23
+
24
+ kubectl-wrapper.sh
25
+
26
+ kubectl apply -f service.yaml
27
+ kubectl apply -f deployment.yaml
28
+
29
+ Bash shines for simple scripts and light glue, but it can quickly get messy as the script takes on more things to do.
30
+
31
+ ## Multiple Envs Duplication
32
+
33
+ One way to create different env like dev and prod is to copy their YAML files. Here's a naive example structure:
34
+
35
+ ├── dev
36
+ │ ├── deployment.yaml
37
+ │ └── service.yaml
38
+ └── prod
39
+ ├── deployment.yaml
40
+ └── service.yaml
41
+
42
+ We then write a wrapper script that selects the folder:
43
+
44
+ kubectl-wrapper.sh
45
+
46
+ KUBE_ENV=${1:-dev}
47
+ kubectl apply -f $KUBE_ENV/service.yaml
48
+ kubectl apply -f $KUBE_ENV/deployment.yaml
49
+
50
+ We've duplicated `service.yaml` and `deployment.yaml`, though. Instead, it'll be nice if we use the same YAML and create a different env like dev and prod with it. Things like `envsubst` to replace variables from the same "template" YAML files can help. As requirements increases, the simple bash glue scripts end up getting messy.
51
+
52
+ ## PreBuilt Docker Image
53
+
54
+ Additionally, the Docker image is expected to be prebuilt. Because you must first build the Docker image, folks will usually write bash script that perform these additional steps and then glue things together.
55
+
56
+ ## Kubernetes Resources Galore
57
+
58
+ Kubernetes has a large service area, and there are so many resource Kinds that we can create that it's difficult for a simple wrapper script to handle enough control for your needs.
59
+
60
+ ## Kubes Makes It Easier
61
+
62
+ Kubes is a Kubernetes Deployment Tool that automates the following:
63
+
64
+ 1. It builds the docker image
65
+ 2. Creates the Kubernetes YAML
66
+ 3. Runs kubectl apply
67
+
68
+ Kubes works transparently and straightforwardly. The deploy command simply do all 3 steps: build, compile, and apply.
69
+
70
+ kubes deploy
71
+
72
+ ### Layering: Multiple Environments like dev and prod
73
+
74
+ To deploy and create multiple environments like dev and prod with the same YAML, we use a different KUBES_ENV setting:
75
+
76
+ KUBES_ENV=dev kubes deploy
77
+ KUBES_ENV=prod kubes deploy
78
+
79
+ The same code is used to create different environments. Kubes achieves this with a feature called Layering. The concept is similar to Kustomize overlays. Here's the general layering processing order that Kubes takes.
80
+
81
+ * [Layering Docs]({% link _docs/layering.md %})
82
+
83
+ ## Hooks
84
+
85
+ Kubes support a variety of hooks run scripts at any part of the `kubectl` commands. This allows you customize and add app-specific logic needed. Example:
86
+
87
+ .kubes/config/hooks/kubectl.rb
88
+
89
+ ```ruby
90
+ before("apply",
91
+ on: "web/deployment",
92
+ execute: "echo 'before apply hook test'",
93
+ )
94
+
95
+ after("delete",
96
+ on: "web/deployment",
97
+ execute: "echo 'after delete hook test'",
98
+ )
99
+ ```
100
+
101
+ There are also [cloud helpers]({% link _docs/helpers.md %}) that will handle things like Secrets and IAM Account creation.
102
+
103
+ * [Kubes Kubectl Hooks Docs]({% link _docs/config/hooks/kubectl.md %})
104
+
105
+ ## Summary
106
+
107
+ Many companies roll their own custom solutions. Chances are that the `kubectl` wrapper scripts eventually grow into messy glue. Every time you go to another company, you must relearn and figure out the home-grown solution's particularities. Even within companies, going from team to team, there may be different scripts that are their own unique beasts. It's a science project.
108
+
109
+ Kubes provides a tool that streamlines the `kubectl` deployment already. Kubes also works in a transparent and straightforward manner. You know what's going on. It's also extendable and customizable. You can add business logic that you wish. Kubes provides convenient tooling and helps you get things done quickly.
@@ -0,0 +1,243 @@
1
+ ---
2
+ title: Kubes vs Helm
3
+ nav_text: Helm
4
+ categories: vs
5
+ ---
6
+
7
+ Though both Kubes and Helm can be used to deploy applications to Kubernetes, they work quite differently. Kubernetes is more focused on deploying your application. Helm is more like a package manager.
8
+
9
+ {% include vs/article.md %}
10
+
11
+ ## Project Structures
12
+
13
+ ### Helm Project Structure
14
+
15
+ Here's an example of Helm project structure:
16
+
17
+ ├── Chart.yaml
18
+ ├── templates
19
+ │ ├── _helpers.tpl
20
+ │ ├── deployment.yaml
21
+ │ └── service.yaml
22
+ └── values.yaml
23
+
24
+ The Kubernetes YAML files reside in the templates folder. The `values.yaml` contains the default configuration values for the YAML files.
25
+
26
+ {% include vs/kubes/structure.md %}
27
+
28
+ ## Multiple Environments: Variables vs Layering
29
+
30
+ Both Helm and Kubes allow you to use the same code to create multiple environments. They take different approaches, though.
31
+
32
+ ### Helm Variables
33
+
34
+ Helm supports creating multiple environments like dev and prod by using different variables files. Here are example commands:
35
+
36
+ helm install chart-dev . --namespace chart-dev --create-namespace -f values/dev.yaml
37
+ helm install chart-prod . --namespace chart-prod --create-namespace -f values/prod.yaml
38
+
39
+ To create different environments in different namespaces with helm, you use the namespace CLI options. Helm creates the namespace outside of YAML, so it's lifecycle is not managed. The `--create-namespace` option is only necessary once. To use different variable values, you use the `-f` option. You can specify as many variables files as you wish.
40
+
41
+ The commands can become verbose, as you have to remember to type the CLI options.
42
+
43
+ {% include vs/kubes/layering.md %}
44
+
45
+ ## Templating Support
46
+
47
+ Both Helm and Kubes support templating logic.
48
+
49
+ ### Helm Templating
50
+
51
+ The templating language is a mixture of the [Go template language](https://godoc.org/text/template) and the [Sprig template library](https://masterminds.github.io/sprig/). Here's an example of Helm templating.
52
+
53
+ templates/deployment.yaml
54
+
55
+ ```yaml
56
+ {% raw %}apiVersion: apps/v1
57
+ kind: Deployment
58
+ metadata:
59
+ name: {{ include "mychart.fullname" . }}
60
+ labels:
61
+ {{- include "mychart.labels" . | nindent 4 }}
62
+ spec:
63
+ {{- if not .Values.autoscaling.enabled }}
64
+ replicas: {{ .Values.replicaCount }}
65
+ {{- end }}
66
+ selector:
67
+ matchLabels:
68
+ {{- include "mychart.selectorLabels" . | nindent 6 }}
69
+ template:
70
+ metadata:
71
+ {{- with .Values.podAnnotations }}
72
+ annotations:
73
+ {{- toYaml . | nindent 8 }}
74
+ {{- end }}
75
+ labels:
76
+ {{- include "mychart.selectorLabels" . | nindent 8 }}
77
+ spec:
78
+ containers:
79
+ - name: {{ .Chart.Name }}
80
+ image: "{{ .Values.image.repository }}:{{ .Values.image.tag | default .Chart.AppVersion }}"
81
+ imagePullPolicy: {{ .Values.image.pullPolicy }}
82
+ ports:
83
+ - name: http
84
+ containerPort: 80
85
+ protocol: TCP{% endraw %}
86
+ ```
87
+
88
+ ### Kubes Templating
89
+
90
+ Kubes uses ERB Ruby for templating. Here's an example.
91
+
92
+ .kubes/resources/web/deployment.yaml
93
+
94
+ ```yaml
95
+ apiVersion: apps/v1
96
+ kind: Deployment
97
+ metadata:
98
+ name: web
99
+ labels:
100
+ role: web
101
+ spec:
102
+ replicas: 1 # overridden on a env basis
103
+ selector:
104
+ matchLabels:
105
+ role: web
106
+ template:
107
+ metadata:
108
+ labels:
109
+ role: web
110
+ spec:
111
+ containers:
112
+ - name: web
113
+ image: <%= docker_image %>
114
+ ```
115
+
116
+ The `docker_image` method is a built-in helper. It returns the Docker image built from your Dockerfile or a configured pre-built image. See: [Docker Image Docs]({% link _docs/intro/docker-image.md %}).
117
+
118
+ One of the reasons why the Kubes YAML template is more straightforward is because Kubes also supports layering. So logic can be moved to different layered YAML files that get merged.
119
+
120
+ ## Define Custom Helpers
121
+
122
+ Both Helm and Kubes support custom user-defined helpers. We'll take a look at examples from each tool.
123
+
124
+ ### Helm Helpers
125
+
126
+ With Helm, you can define custom helpers in `templates/_helpers.tpl`. Example:
127
+
128
+ templates/_helpers.tpl
129
+
130
+ ```go{% raw %}
131
+ {{- define "demo.serviceAccountName" -}}
132
+ {{- if .Values.serviceAccount.create }}
133
+ {{- default (include "demo.fullname" .) .Values.serviceAccount.name }}
134
+ {{- else }}
135
+ {{- default "default" .Values.serviceAccount.name }}
136
+ {{- end }}
137
+ {{- end }}{% endraw %}
138
+ ```
139
+
140
+ The helper methods need to be defined in the go-lang templating language, hence the need for curly brackets.
141
+
142
+ ### Kubes Helpers
143
+
144
+ With Kubes, to define template helper methods, it's just Ruby code. Example:
145
+
146
+ .kubes/helpers/my_helpers.rb
147
+
148
+ ```ruby
149
+ module MyHelpers
150
+ def database_endpoint
151
+ case Kubes.env
152
+ when "dev"
153
+ "dev-db.cbuqdmc3nqvb.us-west-2.rds.amazonaws.com"
154
+ when "prod"
155
+ "prod-db.cbuqdmc3nqvb.us-west-2.rds.amazonaws.com"
156
+ end
157
+ end
158
+ end
159
+ ```
160
+
161
+ The custom helper definitions are a lot more natural.
162
+
163
+ ## Custom Hooks
164
+
165
+ Both Helm and Kubes support hooks. This allows you to hook into the deploy lifecycle and add your own custom business logic.
166
+
167
+ Helm supports a wide variety of hooks for the install, delete, upgrade, and rollback. The hooks run at the helm-level.
168
+
169
+ Kubes also supports hook as the kubes-level; this is similar to the helm-level. Kubes also provide finer-grain control hooks at the kubectl-level.
170
+
171
+ Overally, Helm and Kubes hooks work quite differently. We'll take a look at **some** examples:
172
+
173
+ ### Helm Hook Example
174
+
175
+ Helm hooks are Kubernetes Job resources with a special `helm.sh/hook` annotation. Example:
176
+
177
+ templates/job.yaml
178
+
179
+ ```yaml
180
+ {% raw %}apiVersion: batch/v1
181
+ kind: Job
182
+ metadata:
183
+ name: "{{ .Release.Name }}"
184
+ annotations:
185
+ "helm.sh/hook": post-install # This is what defines this resource as a hook.
186
+ spec:
187
+ template:
188
+ metadata:
189
+ name: "{{ .Release.Name }}"
190
+ spec:
191
+ restartPolicy: Never
192
+ containers:
193
+ - name: post-install-job
194
+ image: "alpine:3.3"
195
+ command: ["/bin/sleep","{{ default "10" .Values.sleepyTime }}"]{% endraw %}
196
+ ```
197
+
198
+ So Helm hooks are just Kubernetes jobs and run on the cluster.
199
+
200
+ ### Kubes Hook Example
201
+
202
+ Kube hooks are scripts that run on the same machine that kubes is running on. Here's an example:
203
+
204
+ .kubes/config/hooks/kubectl.rb
205
+
206
+ ```ruby
207
+ before("apply",
208
+ on: "web/deployment",
209
+ execute: "echo 'before apply hook test'",
210
+ )
211
+ ```
212
+
213
+ The hook will simply run the `echo` command on the same machine as what kubes is running on. The scope is much more fine-grain. We can target any role and resource kind. For example:
214
+
215
+ # hook can run here
216
+ kubectl apply -f .kubes/output/shared/namespace.yaml
217
+ # hook can run here
218
+ kubectl apply -f .kubes/output/web/service.yaml
219
+ # hook can run here
220
+ kubectl apply -f .kubes/output/web/deployment.yaml
221
+ # hook can run here
222
+
223
+ ### Hook Differences
224
+
225
+ We showed examples of hooks with both Helm and Kubes. We already covered one of the differences:
226
+
227
+ * Code: Helm hooks are written as Kubernetes resources. Kubes hooks are written as Ruby code that can shell out to scripts or call an inline [Ruby code]({% link _docs/config/hooks/ruby.md %}).
228
+ * Context: Helm runs as a Kubernetes job. Kubes hooks run on the same machine as kubes itself.
229
+ * Fine-Grain Control: With Kubes we can target the hook at each kubectl resource. Kubes also supports the coarser-grain hooks at the kubes-level. These are like helm hooks.
230
+
231
+ For more info on hooks, check out the [Kubes Hooks Docs](https://kubes.guru/docs/config/hooks/).
232
+
233
+ ## Additional Features
234
+
235
+ Helm and Kubes are quite different tools. Helm is more like a package manager. Kubes is more focused on deploying your specific application and adds additional convenient tooling.
236
+
237
+ Helm can package up your applications and then helps distribute them via a helm server. It's a full-fledge package management system.
238
+
239
+ Kubes supports the deployment workflow. It can build the docker image from your Dockerfile use it to deploy to Kubernetes. Kubes also has additional convenience CLI commands like [exec]({% link _reference/kubes-exec.md %}) and [logs]({% link _reference/kubes-logs.md %}) to work with Kubernetes containers.
240
+
241
+ ## Summary
242
+
243
+ Helm and Kubes are quite different. Helm is a full-fledge package management. Kubes is a more focused on deployment. Both tools support templating logic to help keep your code DRY. Additionally, Kubes supports layering to merge YAML files together for DRYness. Kubes also helps you build your Docker images.
@@ -0,0 +1,167 @@
1
+ ---
2
+ title: Kubes vs Kustomize
3
+ nav_text: Kustomize
4
+ categories: vs
5
+ ---
6
+
7
+ Though both Kubes and Kustomize build YAML files, they are quite different beasts. Kustomize is more like a `kubectl` feature that decorates YAML. Kubes is more like a tool. Kubes also builds YAML, but it also provides additional features.
8
+
9
+ Kustomize lets you customize your Kubernetes YAML files with additional `kustomization.yaml` files. The kustomization.yaml files contain configs that tell `kubectl` how to decorate existing Kubernetes YAML files in a template-free way.
10
+
11
+ Kubes lets you create Kubernetes files more directly. It handles layering and merging YAML files via a conventional structure. It also supports additional conveniences like building Docker images, CLI Customizations, Hooks, etc.
12
+
13
+ {% include vs/article.md %}
14
+
15
+ ## Project Structures
16
+
17
+ ### Kustomize Project Structure
18
+
19
+ Kustomize doesn't define a strict a project folder structure. You define any project structure you wish and use `kustomization.yaml` files to connect things together. Here's a possible Kustomize example project structure:
20
+
21
+ ├── base
22
+ │ ├── deployment.yaml
23
+ │ ├── kustomization.yaml
24
+ │ └── service.yaml
25
+ └── overlays
26
+ ├── dev
27
+ │ ├── deployment.yaml
28
+ │ ├── kustomization.yaml
29
+ │ └── namespace.yaml
30
+ └── prod
31
+ ├── deployment.yaml
32
+ ├── kustomization.yaml
33
+ └── namespace.yaml
34
+
35
+ The provided structure allows you to use the same code to create different environments with overlays. The `overlays/dev/kustomization.yaml` file stitches the structure together.
36
+
37
+ overlays/dev/kustomization.yaml:
38
+
39
+ ```yaml
40
+ apiVersion: kustomize.config.k8s.io/v1beta1
41
+ kind: Kustomization
42
+ bases:
43
+ - ../../base
44
+ patchesStrategicMerge:
45
+ - deployment.yaml
46
+ namespace: demo-dev
47
+ resources:
48
+ - ./namespace.yaml
49
+ ```
50
+
51
+ {% include vs/kubes/structure.md %}
52
+
53
+ ## Multiple Environments: Overlays vs Layering
54
+
55
+ Both Kustomize and Kubes allow you to use the same code to create multiple environments. They take different approaches, though.
56
+
57
+ ### Kustomize Overlays
58
+
59
+ Kustomize achieves multiple environments via `kustomization.yaml` and manually specifying and wiring how the files should merge. To create different dev and prod environments, we use overlays:
60
+
61
+ kubectl apply -k overlays/dev
62
+ kubectl apply -k overlays/prod
63
+
64
+ {% include vs/kubes/layering.md %}
65
+
66
+ ## DRY Differences
67
+
68
+ ## DRY with Kustomize
69
+
70
+ Both Kubes and Kustomize try to achieve DRY YAML code. It tries to avoid YAML duplication.
71
+
72
+ Kustomize takes a purist viewpoint. You use `kustomization.yaml` to decorate original YAML. The original files are untouched and left as-is. Here are example overlays files.
73
+
74
+ overlays/dev/kustomization.yaml:
75
+
76
+ ```yaml
77
+ apiVersion: kustomize.config.k8s.io/v1beta1
78
+ kind: Kustomization
79
+ bases:
80
+ - ../../base
81
+ patchesStrategicMerge:
82
+ - deployment.yaml
83
+ namespace: demo-dev
84
+ resources:
85
+ - ./namespace.yaml
86
+ ```
87
+
88
+ overlays/prod/kustomization.yaml:
89
+
90
+ ```yaml
91
+ apiVersion: kustomize.config.k8s.io/v1beta1
92
+ kind: Kustomization
93
+ bases:
94
+ - ../../base
95
+ patchesStrategicMerge:
96
+ - deployment.yaml
97
+ namespace: demo-prod
98
+ resources:
99
+ - ./namespace.yaml
100
+ ```
101
+
102
+ While duplication is reduced since the original `base/deployment.yaml` is left untouched, there is duplication in the `kustomization.yaml` files.
103
+
104
+ ## DRY with Kubes
105
+
106
+ With Kubes, DRY has handled by layering and templating support. Let's first take a look at how layering removes duplication.
107
+
108
+ Let's focus on `deployment.yaml` to explain and understand layering. Here are the files that get layered.
109
+
110
+ .kubes/resources/base/all.yaml # common YAML for all files
111
+ .kubes/resources/base/deployment.yaml # common YAML for deployment kind
112
+ .kubes/resources/web/deployment.yaml
113
+ .kubes/resources/web/deployment/dev.yaml # env-specific that overrides YAML
114
+
115
+ Each file is merged together and produces a resulting YAML file:
116
+
117
+ .kubes/output/web/deployment.yaml
118
+
119
+ Additionally, you can use ERB templating to keep things DRY. Here's an example:
120
+
121
+ .kubes/resources/shared/namespace.yaml
122
+
123
+ ```yaml
124
+ apiVersion: v1
125
+ kind: Namespace
126
+ metadata:
127
+ name: demo-<%= Kubes.env %>
128
+ labels:
129
+ app: demo
130
+ ```
131
+
132
+ Notice the `<%= Kubes.env %>` templating logic. When is `KUBES_ENV=dev`, then `name: demo-dev`. When is `KUBES_ENV=prod`, then `name: demo-prod`.
133
+
134
+ You can even define your own custom helpers for even more control. See: [Helpers Docs](https://kubes.guru/docs/helpers/custom/)
135
+
136
+ ## Kubes Features
137
+
138
+ Kubes does a lot more than build YAML files. Here's a list of features:
139
+
140
+ {% include intro/features.md %}
141
+
142
+ ## Kubes Kustomize Support
143
+
144
+ All of that being said, Kubes also supports Kustomize. So if you’re a Kustomize user, you can use it with Kubes. Here's an example Kustomize structure with Kubes.
145
+
146
+ .kubes/resources
147
+ ├── base
148
+ │ ├── deployment.yaml
149
+ │ ├── kustomization.yaml
150
+ │ └── service.yaml
151
+ └── overlays
152
+ ├── dev
153
+ │ └── kustomization.yaml
154
+ └── prod
155
+ └── kustomization.yaml
156
+
157
+ In Kustomize mode, Kubes will call `kubectl apply -k`. Here's an example:
158
+
159
+ kubes deploy overlays/dev
160
+
161
+ This calls:
162
+
163
+ kubectl apply -k .kubes/output/overlays/dev
164
+
165
+ ## Summary
166
+
167
+ Kustomize and Kubes are quite different. Kustomize is more of a feature to kubectl and takes on a purist view on changing YAML files for deployment. Kubes has similar merging concepts as Kustomize in the form of layering. Kustomize is more about control things with additional `kustomization.yaml` configurations. Whereas, Kubes takes more of a convention-over-configuration approach, so it just works without having to do extra prewiring work. Kubes additionally helps you build your Docker images.