From 1079ebfd75e1f50e06c6e4d78d46faa065f5e255 Mon Sep 17 00:00:00 2001 From: "moosavi.smd" Date: Fri, 26 Apr 2024 03:34:23 +0330 Subject: [PATCH] try test the github action + argocd --- .github/workflows/docker-image.yml | 14 ++- dockerfile => app/dockerfile | 0 go.mod => app/go.mod | 0 go.sum => app/go.sum | 0 main.go => app/main.go | 0 charts/app-uid/Chart.yaml | 24 ++++ charts/app-uid/templates/NOTES.txt | 22 ++++ charts/app-uid/templates/_helpers.tpl | 62 ++++++++++ charts/app-uid/templates/configmap.yaml | 15 +++ charts/app-uid/templates/deployment.yaml | 71 +++++++++++ charts/app-uid/templates/hpa.yaml | 32 +++++ charts/app-uid/templates/ingress.yaml | 61 +++++++++ charts/app-uid/templates/service.yaml | 15 +++ charts/app-uid/templates/serviceaccount.yaml | 13 ++ .../templates/tests/test-connection.yaml | 15 +++ charts/app-uid/values.yaml | 116 ++++++++++++++++++ 16 files changed, 458 insertions(+), 2 deletions(-) rename dockerfile => app/dockerfile (100%) rename go.mod => app/go.mod (100%) rename go.sum => app/go.sum (100%) rename main.go => app/main.go (100%) create mode 100644 charts/app-uid/Chart.yaml create mode 100644 charts/app-uid/templates/NOTES.txt create mode 100644 charts/app-uid/templates/_helpers.tpl create mode 100644 charts/app-uid/templates/configmap.yaml create mode 100644 charts/app-uid/templates/deployment.yaml create mode 100644 charts/app-uid/templates/hpa.yaml create mode 100644 charts/app-uid/templates/ingress.yaml create mode 100644 charts/app-uid/templates/service.yaml create mode 100644 charts/app-uid/templates/serviceaccount.yaml create mode 100644 charts/app-uid/templates/tests/test-connection.yaml create mode 100644 charts/app-uid/values.yaml diff --git a/.github/workflows/docker-image.yml b/.github/workflows/docker-image.yml index 5eaf412..324af6c 100644 --- a/.github/workflows/docker-image.yml +++ b/.github/workflows/docker-image.yml @@ -20,6 +20,16 @@ jobs: username: ${{ secrets.DOCKERHUB_USERNAME }} password: ${{ secrets.DOCKERHUB_TOKEN }} - name: Build the Docker image - run: docker build . --file Dockerfile --tag moosavismd/uid-app:${{github.run_id}} + run: docker build . --file app/dockerfile --tag moosavismd/uid-app:${{ github.sha }} - name: Push docker image - run: docker push moosavismd/uid-app:${{github.run_id}} + run: docker push moosavismd/uid-app:${{ github.sha }} + + - name: Update values.yaml + run: | + cd charts/app-uid + sed -i 's|tag:.*|APP_VERSION: '${{ github.sha }}'|' values.yaml + git config --global user.name 'GitHub Actions' + git config --global user.email 'actions@github.com' + git add values.yaml + git commit -m "Update values.yaml" + git push \ No newline at end of file diff --git a/dockerfile b/app/dockerfile similarity index 100% rename from dockerfile rename to app/dockerfile diff --git a/go.mod b/app/go.mod similarity index 100% rename from go.mod rename to app/go.mod diff --git a/go.sum b/app/go.sum similarity index 100% rename from go.sum rename to app/go.sum diff --git a/main.go b/app/main.go similarity index 100% rename from main.go rename to app/main.go diff --git a/charts/app-uid/Chart.yaml b/charts/app-uid/Chart.yaml new file mode 100644 index 0000000..8b8a94f --- /dev/null +++ b/charts/app-uid/Chart.yaml @@ -0,0 +1,24 @@ +apiVersion: v2 +name: uid-app +description: A Helm chart for 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: 0.1.0 + +# 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. +# It is recommended to use it with quotes. +appVersion: "1.16.0" diff --git a/charts/app-uid/templates/NOTES.txt b/charts/app-uid/templates/NOTES.txt new file mode 100644 index 0000000..5f1b6e1 --- /dev/null +++ b/charts/app-uid/templates/NOTES.txt @@ -0,0 +1,22 @@ +1. Get the application URL by running these commands: +{{- if .Values.ingress.enabled }} +{{- range $host := .Values.ingress.hosts }} + {{- range .paths }} + http{{ if $.Values.ingress.tls }}s{{ end }}://{{ $host.host }}{{ .path }} + {{- end }} +{{- end }} +{{- else if contains "NodePort" .Values.service.type }} + export NODE_PORT=$(kubectl get --namespace {{ .Release.Namespace }} -o jsonpath="{.spec.ports[0].nodePort}" services {{ include "uid-app.fullname" . }}) + export NODE_IP=$(kubectl get nodes --namespace {{ .Release.Namespace }} -o jsonpath="{.items[0].status.addresses[0].address}") + echo http://$NODE_IP:$NODE_PORT +{{- else if contains "LoadBalancer" .Values.service.type }} + NOTE: It may take a few minutes for the LoadBalancer IP to be available. + You can watch the status of by running 'kubectl get --namespace {{ .Release.Namespace }} svc -w {{ include "uid-app.fullname" . }}' + export SERVICE_IP=$(kubectl get svc --namespace {{ .Release.Namespace }} {{ include "uid-app.fullname" . }} --template "{{"{{ range (index .status.loadBalancer.ingress 0) }}{{.}}{{ end }}"}}") + echo http://$SERVICE_IP:{{ .Values.service.port }} +{{- else if contains "ClusterIP" .Values.service.type }} + export POD_NAME=$(kubectl get pods --namespace {{ .Release.Namespace }} -l "app.kubernetes.io/name={{ include "uid-app.name" . }},app.kubernetes.io/instance={{ .Release.Name }}" -o jsonpath="{.items[0].metadata.name}") + export CONTAINER_PORT=$(kubectl get pod --namespace {{ .Release.Namespace }} $POD_NAME -o jsonpath="{.spec.containers[0].ports[0].containerPort}") + echo "Visit http://127.0.0.1:8080 to use your application" + kubectl --namespace {{ .Release.Namespace }} port-forward $POD_NAME 8080:$CONTAINER_PORT +{{- end }} diff --git a/charts/app-uid/templates/_helpers.tpl b/charts/app-uid/templates/_helpers.tpl new file mode 100644 index 0000000..1a2480a --- /dev/null +++ b/charts/app-uid/templates/_helpers.tpl @@ -0,0 +1,62 @@ +{{/* +Expand the name of the chart. +*/}} +{{- define "uid-app.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 "uid-app.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 "uid-app.chart" -}} +{{- printf "%s-%s" .Chart.Name .Chart.Version | replace "+" "_" | trunc 63 | trimSuffix "-" }} +{{- end }} + +{{/* +Common labels +*/}} +{{- define "uid-app.labels" -}} +helm.sh/chart: {{ include "uid-app.chart" . }} +{{ include "uid-app.selectorLabels" . }} +{{- if .Chart.AppVersion }} +app.kubernetes.io/version: {{ .Chart.AppVersion | quote }} +{{- end }} +app.kubernetes.io/managed-by: {{ .Release.Service }} +{{- end }} + +{{/* +Selector labels +*/}} +{{- define "uid-app.selectorLabels" -}} +app.kubernetes.io/name: {{ include "uid-app.name" . }} +app.kubernetes.io/instance: {{ .Release.Name }} +{{- end }} + +{{/* +Create the name of the service account to use +*/}} +{{- define "uid-app.serviceAccountName" -}} +{{- if .Values.serviceAccount.create }} +{{- default (include "uid-app.fullname" .) .Values.serviceAccount.name }} +{{- else }} +{{- default "default" .Values.serviceAccount.name }} +{{- end }} +{{- end }} diff --git a/charts/app-uid/templates/configmap.yaml b/charts/app-uid/templates/configmap.yaml new file mode 100644 index 0000000..3f2f428 --- /dev/null +++ b/charts/app-uid/templates/configmap.yaml @@ -0,0 +1,15 @@ +apiVersion: v1 +kind: ConfigMap +metadata: + name: {{ include "uid-app.fullname" . }} +data: + config.json: |- + { + "database": { + "host": "{{ .Values.database.host }}", + "port": {{ .Values.database.port }}, + "user": "{{ .Values.database.user }}", + "password": "{{ .Values.database.password }}", + "dbname": "{{ .Values.database.dbname }}" + } + } diff --git a/charts/app-uid/templates/deployment.yaml b/charts/app-uid/templates/deployment.yaml new file mode 100644 index 0000000..81ba117 --- /dev/null +++ b/charts/app-uid/templates/deployment.yaml @@ -0,0 +1,71 @@ +apiVersion: apps/v1 +kind: Deployment +metadata: + name: {{ include "uid-app.fullname" . }} + labels: + {{- include "uid-app.labels" . | nindent 4 }} +spec: + {{- if not .Values.autoscaling.enabled }} + replicas: {{ .Values.replicaCount }} + {{- end }} + selector: + matchLabels: + {{- include "uid-app.selectorLabels" . | nindent 6 }} + template: + metadata: + {{- with .Values.podAnnotations }} + annotations: + {{- toYaml . | nindent 8 }} + {{- end }} + labels: + {{- include "uid-app.labels" . | nindent 8 }} + {{- with .Values.podLabels }} + {{- toYaml . | nindent 8 }} + {{- end }} + spec: + {{- with .Values.imagePullSecrets }} + imagePullSecrets: + {{- toYaml . | nindent 8 }} + {{- end }} + serviceAccountName: {{ include "uid-app.serviceAccountName" . }} + securityContext: + {{- toYaml .Values.podSecurityContext | nindent 8 }} + containers: + - name: {{ .Chart.Name }} + securityContext: + {{- toYaml .Values.securityContext | nindent 12 }} + image: "{{ .Values.image.repository }}:{{ .Values.image.tag | default .Chart.AppVersion }}" + imagePullPolicy: {{ .Values.image.pullPolicy }} + ports: + - name: http + containerPort: {{ .Values.service.port }} + protocol: TCP + env: + - name: PORT + value: "{{ .Values.environment.PORT }}" + livenessProbe: + {{- toYaml .Values.livenessProbe | nindent 12 }} + readinessProbe: + {{- toYaml .Values.readinessProbe | nindent 12 }} + resources: + {{- toYaml .Values.resources | nindent 12 }} + {{- with .Values.volumeMounts }} + volumeMounts: + {{- toYaml . | nindent 12 }} + {{- end }} + {{- with .Values.volumes }} + volumes: + {{- toYaml . | nindent 8 }} + {{- end }} + {{- with .Values.nodeSelector }} + nodeSelector: + {{- toYaml . | nindent 8 }} + {{- end }} + {{- with .Values.affinity }} + affinity: + {{- toYaml . | nindent 8 }} + {{- end }} + {{- with .Values.tolerations }} + tolerations: + {{- toYaml . | nindent 8 }} + {{- end }} diff --git a/charts/app-uid/templates/hpa.yaml b/charts/app-uid/templates/hpa.yaml new file mode 100644 index 0000000..c16a513 --- /dev/null +++ b/charts/app-uid/templates/hpa.yaml @@ -0,0 +1,32 @@ +{{- if .Values.autoscaling.enabled }} +apiVersion: autoscaling/v2 +kind: HorizontalPodAutoscaler +metadata: + name: {{ include "uid-app.fullname" . }} + labels: + {{- include "uid-app.labels" . | nindent 4 }} +spec: + scaleTargetRef: + apiVersion: apps/v1 + kind: Deployment + name: {{ include "uid-app.fullname" . }} + minReplicas: {{ .Values.autoscaling.minReplicas }} + maxReplicas: {{ .Values.autoscaling.maxReplicas }} + metrics: + {{- if .Values.autoscaling.targetCPUUtilizationPercentage }} + - type: Resource + resource: + name: cpu + target: + type: Utilization + averageUtilization: {{ .Values.autoscaling.targetCPUUtilizationPercentage }} + {{- end }} + {{- if .Values.autoscaling.targetMemoryUtilizationPercentage }} + - type: Resource + resource: + name: memory + target: + type: Utilization + averageUtilization: {{ .Values.autoscaling.targetMemoryUtilizationPercentage }} + {{- end }} +{{- end }} diff --git a/charts/app-uid/templates/ingress.yaml b/charts/app-uid/templates/ingress.yaml new file mode 100644 index 0000000..de89b14 --- /dev/null +++ b/charts/app-uid/templates/ingress.yaml @@ -0,0 +1,61 @@ +{{- if .Values.ingress.enabled -}} +{{- $fullName := include "uid-app.fullname" . -}} +{{- $svcPort := .Values.service.port -}} +{{- if and .Values.ingress.className (not (semverCompare ">=1.18-0" .Capabilities.KubeVersion.GitVersion)) }} + {{- if not (hasKey .Values.ingress.annotations "kubernetes.io/ingress.class") }} + {{- $_ := set .Values.ingress.annotations "kubernetes.io/ingress.class" .Values.ingress.className}} + {{- end }} +{{- end }} +{{- if semverCompare ">=1.19-0" .Capabilities.KubeVersion.GitVersion -}} +apiVersion: networking.k8s.io/v1 +{{- else if semverCompare ">=1.14-0" .Capabilities.KubeVersion.GitVersion -}} +apiVersion: networking.k8s.io/v1beta1 +{{- else -}} +apiVersion: extensions/v1beta1 +{{- end }} +kind: Ingress +metadata: + name: {{ $fullName }} + labels: + {{- include "uid-app.labels" . | nindent 4 }} + {{- with .Values.ingress.annotations }} + annotations: + {{- toYaml . | nindent 4 }} + {{- end }} +spec: + {{- if and .Values.ingress.className (semverCompare ">=1.18-0" .Capabilities.KubeVersion.GitVersion) }} + ingressClassName: {{ .Values.ingress.className }} + {{- end }} + {{- if .Values.ingress.tls }} + tls: + {{- range .Values.ingress.tls }} + - hosts: + {{- range .hosts }} + - {{ . | quote }} + {{- end }} + secretName: {{ .secretName }} + {{- end }} + {{- end }} + rules: + {{- range .Values.ingress.hosts }} + - host: {{ .host | quote }} + http: + paths: + {{- range .paths }} + - path: {{ .path }} + {{- if and .pathType (semverCompare ">=1.18-0" $.Capabilities.KubeVersion.GitVersion) }} + pathType: {{ .pathType }} + {{- end }} + backend: + {{- if semverCompare ">=1.19-0" $.Capabilities.KubeVersion.GitVersion }} + service: + name: {{ $fullName }} + port: + number: {{ $svcPort }} + {{- else }} + serviceName: {{ $fullName }} + servicePort: {{ $svcPort }} + {{- end }} + {{- end }} + {{- end }} +{{- end }} diff --git a/charts/app-uid/templates/service.yaml b/charts/app-uid/templates/service.yaml new file mode 100644 index 0000000..b6bd9cf --- /dev/null +++ b/charts/app-uid/templates/service.yaml @@ -0,0 +1,15 @@ +apiVersion: v1 +kind: Service +metadata: + name: {{ include "uid-app.fullname" . }} + labels: + {{- include "uid-app.labels" . | nindent 4 }} +spec: + type: {{ .Values.service.type }} + ports: + - port: {{ .Values.service.port }} + targetPort: http + protocol: TCP + name: http + selector: + {{- include "uid-app.selectorLabels" . | nindent 4 }} diff --git a/charts/app-uid/templates/serviceaccount.yaml b/charts/app-uid/templates/serviceaccount.yaml new file mode 100644 index 0000000..0fa405b --- /dev/null +++ b/charts/app-uid/templates/serviceaccount.yaml @@ -0,0 +1,13 @@ +{{- if .Values.serviceAccount.create -}} +apiVersion: v1 +kind: ServiceAccount +metadata: + name: {{ include "uid-app.serviceAccountName" . }} + labels: + {{- include "uid-app.labels" . | nindent 4 }} + {{- with .Values.serviceAccount.annotations }} + annotations: + {{- toYaml . | nindent 4 }} + {{- end }} +automountServiceAccountToken: {{ .Values.serviceAccount.automount }} +{{- end }} diff --git a/charts/app-uid/templates/tests/test-connection.yaml b/charts/app-uid/templates/tests/test-connection.yaml new file mode 100644 index 0000000..63955c2 --- /dev/null +++ b/charts/app-uid/templates/tests/test-connection.yaml @@ -0,0 +1,15 @@ +apiVersion: v1 +kind: Pod +metadata: + name: "{{ include "uid-app.fullname" . }}-test-connection" + labels: + {{- include "uid-app.labels" . | nindent 4 }} + annotations: + "helm.sh/hook": test +spec: + containers: + - name: wget + image: busybox + command: ['wget'] + args: ['{{ include "uid-app.fullname" . }}:{{ .Values.service.port }}'] + restartPolicy: Never diff --git a/charts/app-uid/values.yaml b/charts/app-uid/values.yaml new file mode 100644 index 0000000..7e8fdbc --- /dev/null +++ b/charts/app-uid/values.yaml @@ -0,0 +1,116 @@ +# Default values for uid-app. +# This is a YAML-formatted file. +# Declare variables to be passed into your templates. + +replicaCount: 1 + +image: + repository: moosavismd/uid-app + pullPolicy: IfNotPresent + # Overrides the image tag whose default is the chart appVersion. + tag: "8835543960" + +imagePullSecrets: [] +nameOverride: "" +fullnameOverride: "" + +serviceAccount: + # Specifies whether a service account should be created + create: true + # Automatically mount a ServiceAccount's API credentials? + automount: 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: {} +podLabels: {} + +podSecurityContext: {} + # fsGroup: 2000 + +securityContext: {} + # capabilities: + # drop: + # - ALL + # readOnlyRootFilesystem: true + # runAsNonRoot: true + # runAsUser: 1000 + +service: + type: NodePort + port: 80 + +ingress: + enabled: false + className: "" + annotations: {} + # kubernetes.io/ingress.class: nginx + # kubernetes.io/tls-acme: "true" + hosts: + - host: chart-example.local + paths: + - path: / + pathType: ImplementationSpecific + 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 + +livenessProbe: + httpGet: + path: /health + port: http +readinessProbe: + httpGet: + path: /health + port: http + +environment: + PORT: "80" + +autoscaling: + enabled: true + minReplicas: 1 + maxReplicas: 2 + targetCPUUtilizationPercentage: 80 + # targetMemoryUtilizationPercentage: 80 + +# Additional volumes on the output Deployment definition. +volumes: + - name: config-volume + configMap: + name: uid-app + +# Additional volumeMounts on the output Deployment definition. +volumeMounts: + - name: config-volume + mountPath: "/config/" + readOnly: true + +nodeSelector: {} + +tolerations: [] + +affinity: {} + +database: + host: "mysql" + port: 3306 + user: "root" + password: "password" + dbname: "mydatabase"