-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
PARRA DE MIGUEL Mario
committed
Jun 1, 2021
1 parent
a0e39d8
commit b62f5f0
Showing
16 changed files
with
55 additions
and
382 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,11 @@ | ||
apiVersion: v1 | ||
appVersion: "3.9" | ||
description: Deploy a basic Alpine Linux pod | ||
home: https://helm.sh/helm | ||
maintainers: | ||
- email: [email protected] | ||
name: Name | ||
name: example-v1 | ||
sources: | ||
- https://github.com/helm/helm | ||
version: 0.1.11 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,13 @@ | ||
#Alpine: A simple Helm chart | ||
|
||
Run a single pod of Alpine Linux. | ||
|
||
This example was generated using the command `helm create alpine`. | ||
|
||
The `templates/` directory contains a very simple pod resource with a | ||
couple of parameters. | ||
|
||
The `values.yaml` file contains the default values for the | ||
`alpine-pod.yaml` template. | ||
|
||
You can install this example using `helm install ./alpine`. |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,27 @@ | ||
apiVersion: v1 | ||
kind: Pod | ||
metadata: | ||
name: "{{.Release.Name}}-{{.Values.Name}}" | ||
labels: | ||
# The "app.kubernetes.io/managed-by" label is used to track which tool | ||
# deployed a given chart. It is useful for admins who want to see what | ||
# releases a particular tool is responsible for. | ||
app.kubernetes.io/managed-by: {{.Release.Service | quote }} | ||
# The "app.kubernetes.io/instance" convention makes it easy to tie a release | ||
# to all of the Kubernetes resources that were created as part of that | ||
# release. | ||
app.kubernetes.io/instance: {{.Release.Name | quote }} | ||
app.kubernetes.io/version: {{ .Chart.AppVersion | quote }} | ||
# This makes it easy to audit chart usage. | ||
helm.sh/chart: "{{.Chart.Name}}-{{.Chart.Version}}" | ||
values: {{.Values.test.Name}} | ||
spec: | ||
# This shows how to use a simple value. This will look for a passed-in value | ||
# called restartPolicy. If it is not found, it will use the default value. | ||
# {{default "Never" .restartPolicy}} is a slightly optimized version of the | ||
# more conventional syntax: {{.restartPolicy | default "Never"}} | ||
restartPolicy: {{default "Never" .Values.restartPolicy}} | ||
containers: | ||
- name: waiter | ||
image: "alpine:{{ .Chart.AppVersion }}" | ||
command: ["/bin/sleep","9000"] |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,3 @@ | ||
Name: my-alpine | ||
test: | ||
Name: initial-values |
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
15 changes: 0 additions & 15 deletions
15
charts/helm-chart-test/templates/tests/test-connection.yaml
This file was deleted.
Oops, something went wrong.
Oops, something went wrong.