From f97ab473299286fd849f2e9758e16bbde74604a1 Mon Sep 17 00:00:00 2001 From: Waqar Ahmed Date: Mon, 28 Sep 2020 17:45:55 +0500 Subject: [PATCH] Add basic chart for deployment --- charts/ix-chart/item.yaml | 2 + charts/ix-chart/v2009.0.1/.helmignore | 23 ++++++ charts/ix-chart/v2009.0.1/Chart.yaml | 23 ++++++ charts/ix-chart/v2009.0.1/README.md | 1 + charts/ix-chart/v2009.0.1/app-readme.md | 1 + charts/ix-chart/v2009.0.1/questions.yaml | 25 ++++++ charts/ix-chart/v2009.0.1/templates/NOTES.txt | 2 + .../ix-chart/v2009.0.1/templates/_helpers.tpl | 63 +++++++++++++++ .../v2009.0.1/templates/deployment.yaml | 21 +++++ charts/ix-chart/v2009.0.1/values.yaml | 79 +++++++++++++++++++ 10 files changed, 240 insertions(+) create mode 100644 charts/ix-chart/item.yaml create mode 100644 charts/ix-chart/v2009.0.1/.helmignore create mode 100644 charts/ix-chart/v2009.0.1/Chart.yaml create mode 100644 charts/ix-chart/v2009.0.1/README.md create mode 100644 charts/ix-chart/v2009.0.1/app-readme.md create mode 100644 charts/ix-chart/v2009.0.1/questions.yaml create mode 100644 charts/ix-chart/v2009.0.1/templates/NOTES.txt create mode 100644 charts/ix-chart/v2009.0.1/templates/_helpers.tpl create mode 100644 charts/ix-chart/v2009.0.1/templates/deployment.yaml create mode 100644 charts/ix-chart/v2009.0.1/values.yaml diff --git a/charts/ix-chart/item.yaml b/charts/ix-chart/item.yaml new file mode 100644 index 00000000000..2a60e83cc4f --- /dev/null +++ b/charts/ix-chart/item.yaml @@ -0,0 +1,2 @@ +categories: + - generic diff --git a/charts/ix-chart/v2009.0.1/.helmignore b/charts/ix-chart/v2009.0.1/.helmignore new file mode 100644 index 00000000000..0e8a0eb36f4 --- /dev/null +++ b/charts/ix-chart/v2009.0.1/.helmignore @@ -0,0 +1,23 @@ +# Patterns to ignore when building packages. +# This supports shell glob matching, relative path matching, and +# negation (prefixed with !). Only one pattern per line. +.DS_Store +# Common VCS dirs +.git/ +.gitignore +.bzr/ +.bzrignore +.hg/ +.hgignore +.svn/ +# Common backup files +*.swp +*.bak +*.tmp +*.orig +*~ +# Various IDEs +.project +.idea/ +*.tmproj +.vscode/ diff --git a/charts/ix-chart/v2009.0.1/Chart.yaml b/charts/ix-chart/v2009.0.1/Chart.yaml new file mode 100644 index 00000000000..1a0b65b4c44 --- /dev/null +++ b/charts/ix-chart/v2009.0.1/Chart.yaml @@ -0,0 +1,23 @@ +apiVersion: v2 +name: ix-chart +description: A Helm chart for deploying simple workloads Kubernetes + +# A chart can be either an 'application' or a 'library' chart. +# +# Application charts are a collection of templates that can be packaged into versioned archives +# to be deployed. +# +# Library charts provide useful utilities or functions for the chart developer. They're included as +# a dependency of application charts to inject those utilities and functions into the rendering +# pipeline. Library charts do not define any templates and therefore cannot be deployed. +type: application + +# This is the chart version. This version number should be incremented each time you make changes +# to the chart and its templates, including the app version. +# Versions are expected to follow Semantic Versioning (https://semver.org/) +version: 2009.0.1 + +# This is the version number of the application being deployed. This version number should be +# incremented each time you make changes to the application. Versions are not expected to +# follow Semantic Versioning. They should reflect the version the application is using. +appVersion: v1 diff --git a/charts/ix-chart/v2009.0.1/README.md b/charts/ix-chart/v2009.0.1/README.md new file mode 100644 index 00000000000..1c3372364b2 --- /dev/null +++ b/charts/ix-chart/v2009.0.1/README.md @@ -0,0 +1 @@ +blah blah \ No newline at end of file diff --git a/charts/ix-chart/v2009.0.1/app-readme.md b/charts/ix-chart/v2009.0.1/app-readme.md new file mode 100644 index 00000000000..1c3372364b2 --- /dev/null +++ b/charts/ix-chart/v2009.0.1/app-readme.md @@ -0,0 +1 @@ +blah blah \ No newline at end of file diff --git a/charts/ix-chart/v2009.0.1/questions.yaml b/charts/ix-chart/v2009.0.1/questions.yaml new file mode 100644 index 00000000000..94652b425f7 --- /dev/null +++ b/charts/ix-chart/v2009.0.1/questions.yaml @@ -0,0 +1,25 @@ +# Image related +- variable: image.repository + description: "Docker image repository" + label: "Image repository" + group: "Container Images" + schema: + type: stirng + required: true +- variable: image.tag + description: "Tag to use for specified image" + label: "Image Tag" + group: "Container Images" + schema: + type: string + default: "latest" +- variable: image.pull_policy + description: "Docker Image Pull Policy" + label: "Image Pull Policy" + schema: + type: string + default: "IfNotPresent" + enum: + - "IfNotPresent" + - "Always" + - "Never" diff --git a/charts/ix-chart/v2009.0.1/templates/NOTES.txt b/charts/ix-chart/v2009.0.1/templates/NOTES.txt new file mode 100644 index 00000000000..c3b3453e34b --- /dev/null +++ b/charts/ix-chart/v2009.0.1/templates/NOTES.txt @@ -0,0 +1,2 @@ +1. Get the application URL by running these commands: + diff --git a/charts/ix-chart/v2009.0.1/templates/_helpers.tpl b/charts/ix-chart/v2009.0.1/templates/_helpers.tpl new file mode 100644 index 00000000000..cc466748a14 --- /dev/null +++ b/charts/ix-chart/v2009.0.1/templates/_helpers.tpl @@ -0,0 +1,63 @@ +{{/* vim: set filetype=mustache: */}} +{{/* +Expand the name of the chart. +*/}} +{{- define "ix-chart.name" -}} +{{- default .Chart.Name .Values.nameOverride | trunc 63 | trimSuffix "-" }} +{{- end }} + +{{/* +Create a default fully qualified app name. +We truncate at 63 chars because some Kubernetes name fields are limited to this (by the DNS naming spec). +If release name contains chart name it will be used as a full name. +*/}} +{{- define "ix-chart.fullname" -}} +{{- if .Values.fullnameOverride }} +{{- .Values.fullnameOverride | trunc 63 | trimSuffix "-" }} +{{- else }} +{{- $name := default .Chart.Name .Values.nameOverride }} +{{- if contains $name .Release.Name }} +{{- .Release.Name | trunc 63 | trimSuffix "-" }} +{{- else }} +{{- printf "%s-%s" .Release.Name $name | trunc 63 | trimSuffix "-" }} +{{- end }} +{{- end }} +{{- end }} + +{{/* +Create chart name and version as used by the chart label. +*/}} +{{- define "ix-chart.chart" -}} +{{- printf "%s-%s" .Chart.Name .Chart.Version | replace "+" "_" | trunc 63 | trimSuffix "-" }} +{{- end }} + +{{/* +Common labels +*/}} +{{- define "ix-chart.labels" -}} +helm.sh/chart: {{ include "ix-chart.chart" . }} +{{ include "ix-chart.selectorLabels" . }} +{{- if .Chart.AppVersion }} +app.kubernetes.io/version: {{ .Chart.AppVersion | quote }} +{{- end }} +app.kubernetes.io/managed-by: {{ .Release.Service }} +{{- end }} + +{{/* +Selector labels +*/}} +{{- define "ix-chart.selectorLabels" -}} +app.kubernetes.io/name: {{ include "ix-chart.name" . }} +app.kubernetes.io/instance: {{ .Release.Name }} +{{- end }} + +{{/* +Create the name of the service account to use +*/}} +{{- define "ix-chart.serviceAccountName" -}} +{{- if .Values.serviceAccount.create }} +{{- default (include "ix-chart.fullname" .) .Values.serviceAccount.name }} +{{- else }} +{{- default "default" .Values.serviceAccount.name }} +{{- end }} +{{- end }} diff --git a/charts/ix-chart/v2009.0.1/templates/deployment.yaml b/charts/ix-chart/v2009.0.1/templates/deployment.yaml new file mode 100644 index 00000000000..8028cae45e3 --- /dev/null +++ b/charts/ix-chart/v2009.0.1/templates/deployment.yaml @@ -0,0 +1,21 @@ +apiVersion: apps/v1 +kind: Deployment +metadata: + name: {{ include "ix-chart.fullname" . }} + labels: + {{- include "ix-chart.labels" . | nindent 4 }} +spec: + selector: + matchLabels: + {{- include "ix-chart.selectorLabels" . | nindent 6 }} + template: + metadata: + labels: + {{- include "ix-chart.selectorLabels" . | nindent 8 }} + spec: + containers: + - name: {{ .Chart.Name }} + securityContext: + {{- toYaml .Values.securityContext | nindent 12 }} + image: "{{ .Values.image.repository }}:{{ .Values.image.tag | default "latest" }}" + imagePullPolicy: {{ .Values.image.pullPolicy }} diff --git a/charts/ix-chart/v2009.0.1/values.yaml b/charts/ix-chart/v2009.0.1/values.yaml new file mode 100644 index 00000000000..2c6aa526303 --- /dev/null +++ b/charts/ix-chart/v2009.0.1/values.yaml @@ -0,0 +1,79 @@ +# Default values for mychart. +# This is a YAML-formatted file. +# Declare variables to be passed into your templates. + +replicaCount: 1 + +image: + repository: debian + pullPolicy: IfNotPresent + # Overrides the image tag whose default is the chart appVersion. + tag: "testing" + +imagePullSecrets: [] +nameOverride: "" +fullnameOverride: "" + +serviceAccount: + # Specifies whether a service account should be created + create: true + # Annotations to add to the service account + annotations: {} + # The name of the service account to use. + # If not set and create is true, a name is generated using the fullname template + name: "" + +podAnnotations: {} + +podSecurityContext: {} + # fsGroup: 2000 + +securityContext: {} + # capabilities: + # drop: + # - ALL + # readOnlyRootFilesystem: true + # runAsNonRoot: true + # runAsUser: 1000 + +service: + type: ClusterIP + port: 8000 + +ingress: + enabled: false + annotations: {} + # kubernetes.io/ingress.class: nginx + # kubernetes.io/tls-acme: "true" + hosts: + - host: chart-example.local + paths: [] + tls: [] + # - secretName: chart-example-tls + # hosts: + # - chart-example.local + +resources: {} + # We usually recommend not to specify default resources and to leave this as a conscious + # choice for the user. This also increases chances charts run on environments with little + # resources, such as Minikube. If you do want to specify resources, uncomment the following + # lines, adjust them as necessary, and remove the curly braces after 'resources:'. + # limits: + # cpu: 100m + # memory: 128Mi + # requests: + # cpu: 100m + # memory: 128Mi + +autoscaling: + enabled: false + minReplicas: 1 + maxReplicas: 100 + targetCPUUtilizationPercentage: 80 + # targetMemoryUtilizationPercentage: 80 + +nodeSelector: {} + +tolerations: [] + +affinity: {}