From 9efd229309f289540d76ce7ede91c99114d58f5d Mon Sep 17 00:00:00 2001 From: Aman Sharma Date: Mon, 19 Feb 2024 10:55:24 +0100 Subject: [PATCH] backend image and helm chart --- .github/workflows/BuildandPushImage.yml | 34 ++++ .github/workflows/DeployToAKS.yml | 160 ++++++++++++++++++ helm-charts/dev/values.yaml | 95 +++++++++++ helm-charts/infini-connect/.helmignore | 23 +++ helm-charts/infini-connect/Chart.yaml | 24 +++ .../infini-connect/templates/NOTES.txt | 22 +++ .../infini-connect/templates/_helpers.tpl | 59 +++++++ .../infini-connect/templates/deployment.yaml | 62 +++++++ helm-charts/infini-connect/templates/hpa.yaml | 28 +++ .../infini-connect/templates/ingress.yaml | 62 +++++++ .../infini-connect/templates/service.yaml | 20 +++ .../templates/serviceaccount.yaml | 13 ++ helm-charts/infini-connect/values.yaml | 94 ++++++++++ helm-charts/prod/values.yaml | 95 +++++++++++ 14 files changed, 791 insertions(+) create mode 100644 .github/workflows/BuildandPushImage.yml create mode 100644 .github/workflows/DeployToAKS.yml create mode 100644 helm-charts/dev/values.yaml create mode 100644 helm-charts/infini-connect/.helmignore create mode 100644 helm-charts/infini-connect/Chart.yaml create mode 100644 helm-charts/infini-connect/templates/NOTES.txt create mode 100644 helm-charts/infini-connect/templates/_helpers.tpl create mode 100644 helm-charts/infini-connect/templates/deployment.yaml create mode 100644 helm-charts/infini-connect/templates/hpa.yaml create mode 100644 helm-charts/infini-connect/templates/ingress.yaml create mode 100644 helm-charts/infini-connect/templates/service.yaml create mode 100644 helm-charts/infini-connect/templates/serviceaccount.yaml create mode 100644 helm-charts/infini-connect/values.yaml create mode 100644 helm-charts/prod/values.yaml diff --git a/.github/workflows/BuildandPushImage.yml b/.github/workflows/BuildandPushImage.yml new file mode 100644 index 0000000..5160358 --- /dev/null +++ b/.github/workflows/BuildandPushImage.yml @@ -0,0 +1,34 @@ +# Docs for the Azure Web Apps Deploy action: https://github.com/Azure/webapps-deploy +# More GitHub Actions for Azure: https://github.com/Azure/actions + +name: Build and Push to ACR +on: + push: + branches: + - main + - feat/ci-cd + + workflow_dispatch: +jobs: + build-and-push: + runs-on: ubuntu-latest + steps: + - name: Checkout + uses: actions/checkout@v4 + # Add support for more platforms with QEMU (optional) + # https://github.com/docker/setup-qemu-action + - name: Set up QEMU + uses: docker/setup-qemu-action@v3 + - name: Set up Docker Buildx + uses: docker/setup-buildx-action@v3 + - name: Login to Azure Container Registry + uses: azure/docker-login@v1 + with: + login-server: ${{ secrets.NEW_REGISTRY_NAME }}.azurecr.io + username: ${{ secrets.NEW_REGISTRY_USERNAME }} + password: ${{ secrets.NEW_REGISTRY_PASSWORD }} + - name: Build and push + uses: docker/build-push-action@v2 + with: + push: true + tags: ${{ secrets.NEW_REGISTRY_NAME }}.azurecr.io/infini-connect:dev diff --git a/.github/workflows/DeployToAKS.yml b/.github/workflows/DeployToAKS.yml new file mode 100644 index 0000000..d8c49ba --- /dev/null +++ b/.github/workflows/DeployToAKS.yml @@ -0,0 +1,160 @@ +# This workflow will build and push an application to a Azure Kubernetes Service (AKS) cluster when you push your code +# +# This workflow assumes you have already created the target AKS cluster and have created an Azure Container Registry (ACR) +# The ACR should be attached to the AKS cluster +# For instructions see: +# - https://docs.microsoft.com/en-us/azure/aks/kubernetes-walkthrough-portal +# - https://docs.microsoft.com/en-us/azure/container-registry/container-registry-get-started-portal +# - https://learn.microsoft.com/en-us/azure/aks/cluster-container-registry-integration?tabs=azure-cli#configure-acr-integration-for-existing-aks-clusters +# - https://github.com/Azure/aks-create-action +# +# To configure this workflow: +# +# 1. Set the following secrets in your repository (instructions for getting these +# https://docs.microsoft.com/en-us/azure/developer/github/connect-from-azure?tabs=azure-cli%2Clinux)): +# - AZURE_CLIENT_ID +# - AZURE_TENANT_ID +# - AZURE_SUBSCRIPTION_ID +# +# 2. Set the following environment variables (or replace the values below): +# - AZURE_CONTAINER_REGISTRY (name of your container registry / ACR) +# - CONTAINER_NAME (name of the container image you would like to push up to your ACR) +# - RESOURCE_GROUP (where your cluster is deployed) +# - CLUSTER_NAME (name of your AKS cluster) +# - IMAGE_PULL_SECRET_NAME (name of the ImagePullSecret that will be created to pull your ACR image) +# +# 3. Choose the appropriate render engine for the bake step https://github.com/Azure/k8s-bake. The config below assumes Helm. +# Set your helmChart, overrideFiles, overrides, and helm-version to suit your configuration. +# - CHART_PATH (path to your helm chart) +# - CHART_OVERRIDE_PATH (path to your helm chart with override values) +# +# For more information on GitHub Actions for Azure, refer to https://github.com/Azure/Actions +# For more samples to get started with GitHub Action workflows to deploy to Azure, refer to https://github.com/Azure/actions-workflow-samples +# For more options with the actions used below please refer to https://github.com/Azure/login + +name: Build and deploy to AKS with Helm + +on: + push: + branches: + - main + #- feat/ci-cd + workflow_dispatch: + +env: + RESOURCE_GROUP: "inficonnectrg" + CLUSTER_NAME: "inficonnectaks" + CHART_PATH: "./helm-charts/infini-connect" + #CHART_OVERRIDE_PATH: "your-chart-override-path" + +jobs: + deployToDev: + name: Deploy to Developemnt + permissions: + actions: read + contents: read + id-token: write + runs-on: ubuntu-latest + environment: Development + steps: + # Checks out the repository this file is in + - uses: actions/checkout@v3 + + # Logs in with your Azure credentials + - name: Azure login + uses: azure/login@v1.4.6 + with: + creds: ${{ secrets.AZURE_CREDENTIALS }} + + # Use kubelogin to configure your kubeconfig for Azure auth + - name: Set up kubelogin for non-interactive login + uses: azure/use-kubelogin@v1 + with: + kubelogin-version: 'v0.0.25' + + # Retrieves your Azure Kubernetes Service cluster's kubeconfig file + - name: Get K8s context + uses: azure/aks-set-context@v3 + with: + resource-group: ${{ env.RESOURCE_GROUP }} + cluster-name: ${{ env.CLUSTER_NAME }} + admin: 'false' + use-kubelogin: 'true' + + # Runs Helm to create manifest files + - name: Bake deployment + uses: azure/k8s-bake@v2 + with: + renderEngine: "helm" + helmChart: ${{ env.CHART_PATH }} + overrideFiles: "./helm-charts/dev/values.yaml" + overrides: | + replicas:1 + helm-version: "latest" + id: bake + + # Deploys application based on manifest files from previous step + - name: Deploy application + uses: Azure/k8s-deploy@v4 + with: + action: deploy + manifests: ${{ steps.bake.outputs.manifestsBundle }} + namespace: "ic-core-dev" + images: | + ${{ env.AZURE_CONTAINER_REGISTRY }}.azurecr.io/${{ env.CONTAINER_NAME }}:${{ github.sha }} + + deployToProd: + name: Deploy to Production + needs: deployToDev + permissions: + actions: read + contents: read + id-token: write + runs-on: ubuntu-latest + environment: Production + steps: + # Checks out the repository this file is in + - uses: actions/checkout@v3 + + # Logs in with your Azure credentials + - name: Azure login + uses: azure/login@v1.4.6 + with: + creds: ${{ secrets.AZURE_CREDENTIALS }} + + # Use kubelogin to configure your kubeconfig for Azure auth + - name: Set up kubelogin for non-interactive login + uses: azure/use-kubelogin@v1 + with: + kubelogin-version: 'v0.0.25' + + # Retrieves your Azure Kubernetes Service cluster's kubeconfig file + - name: Get K8s context + uses: azure/aks-set-context@v3 + with: + resource-group: ${{ env.RESOURCE_GROUP }} + cluster-name: ${{ env.CLUSTER_NAME }} + admin: 'false' + use-kubelogin: 'true' + + # Runs Helm to create manifest files + - name: Bake deployment + uses: azure/k8s-bake@v2 + with: + renderEngine: "helm" + helmChart: ${{ env.CHART_PATH }} + overrideFiles: ./helm-charts/prod/values.yaml + overrides: | + replicas:1 + helm-version: "latest" + id: bake + + # Deploys application based on manifest files from previous step + - name: Deploy application + uses: Azure/k8s-deploy@v4 + with: + action: deploy + manifests: ${{ steps.bake.outputs.manifestsBundle }} + namespace: "ic-core-acc" + images: | + ${{ env.AZURE_CONTAINER_REGISTRY }}.azurecr.io/${{ env.CONTAINER_NAME }}:${{ github.sha }} diff --git a/helm-charts/dev/values.yaml b/helm-charts/dev/values.yaml new file mode 100644 index 0000000..5c76a7e --- /dev/null +++ b/helm-charts/dev/values.yaml @@ -0,0 +1,95 @@ +# Default values for infini-connect. +# This is a YAML-formatted file. +# Declare variables to be passed into your templates. + +replicaCount: 1 + +namespace: ic-core-dev + +environment: dev + +image: + repository: inficonnectacr.azurecr.io/infini-connect + pullPolicy: Always + # Overrides the image tag whose default is the chart appVersion. + tag: "dev" + +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 + ports: + http: + port: 80 + targetPort: http + protocol: TCP + https: + port: 443 + targetPort: https + protocol: TCP + + +ingress: + enabled: true + className: "" + port: 80 + annotations: + nginx.ingress.kubernetes.io/ssl-redirect: "false" + hosts: + - host: "dev-api.infini-connect.devoteam.nl" + paths: + - path: / + pathType: Prefix + 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: {} diff --git a/helm-charts/infini-connect/.helmignore b/helm-charts/infini-connect/.helmignore new file mode 100644 index 0000000..0e8a0eb --- /dev/null +++ b/helm-charts/infini-connect/.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/helm-charts/infini-connect/Chart.yaml b/helm-charts/infini-connect/Chart.yaml new file mode 100644 index 0000000..052007d --- /dev/null +++ b/helm-charts/infini-connect/Chart.yaml @@ -0,0 +1,24 @@ +apiVersion: v2 +name: infini-connect +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: 1.0.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.0.0" diff --git a/helm-charts/infini-connect/templates/NOTES.txt b/helm-charts/infini-connect/templates/NOTES.txt new file mode 100644 index 0000000..c582f8b --- /dev/null +++ b/helm-charts/infini-connect/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 "infini-connect.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 "infini-connect.fullname" . }}' + export SERVICE_IP=$(kubectl get svc --namespace {{ .Release.Namespace }} {{ include "infini-connect.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 "infini-connect.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/helm-charts/infini-connect/templates/_helpers.tpl b/helm-charts/infini-connect/templates/_helpers.tpl new file mode 100644 index 0000000..a134484 --- /dev/null +++ b/helm-charts/infini-connect/templates/_helpers.tpl @@ -0,0 +1,59 @@ +{{/* +Expand the name of the chart. +*/}} +{{- define "infini-connect.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 "infini-connect.fullname" -}} +{{- if .Values.fullnameOverride }} +{{- .Values.fullnameOverride | trunc 63 | trimSuffix "-" }} +{{- else }} +{{- $name := default .Chart.Name .Values.nameOverride }} +{{- $name | trunc 63 | trimSuffix "-" }} +{{- end }} +{{- end }} + +{{/* +Create chart name and version as used by the chart label. +*/}} +{{- define "infini-connect.chart" -}} +{{- printf "%s-%s" .Chart.Name .Chart.Version | replace "+" "_" | trunc 63 | trimSuffix "-" }} +{{- end }} + +{{/* +Common labels +*/}} +{{- define "infini-connect.labels" -}} +helm.sh/chart: {{ include "infini-connect.chart" . }} +{{ include "infini-connect.selectorLabels" . }} +{{- if .Chart.AppVersion }} +app.kubernetes.io/version: {{ .Chart.AppVersion | quote }} +{{- end }} +app.kubernetes.io/managed-by: {{ .Release.Service }} +{{- end }} + +{{/* +Selector labels +*/}} +{{- define "infini-connect.selectorLabels" -}} +app.kubernetes.io/name: {{ include "infini-connect.name" . }} +app.kubernetes.io/instance: {{ .Release.Name }} +environment: {{ .Values.environment }} +{{- end }} + +{{/* +Create the name of the service account to use +*/}} +{{- define "infini-connect.serviceAccountName" -}} +{{- if .Values.serviceAccount.create }} +{{- default (include "infini-connect.fullname" .) .Values.serviceAccount.name }} +{{- else }} +{{- default "default" .Values.serviceAccount.name }} +{{- end }} +{{- end }} diff --git a/helm-charts/infini-connect/templates/deployment.yaml b/helm-charts/infini-connect/templates/deployment.yaml new file mode 100644 index 0000000..a0bbf79 --- /dev/null +++ b/helm-charts/infini-connect/templates/deployment.yaml @@ -0,0 +1,62 @@ +apiVersion: apps/v1 +kind: Deployment +metadata: + name: {{ include "infini-connect.fullname" . }} + namespace: {{ .Values.namespace }} + labels: + {{- include "infini-connect.labels" . | nindent 4 }} +spec: + {{- if not .Values.autoscaling.enabled }} + replicas: {{ .Values.replicaCount }} + {{- end }} + selector: + matchLabels: + {{- include "infini-connect.selectorLabels" . | nindent 6 }} + template: + metadata: + {{- with .Values.podAnnotations }} + annotations: + {{- toYaml . | nindent 8 }} + {{- end }} + labels: + {{- include "infini-connect.selectorLabels" . | nindent 8 }} + spec: + {{- with .Values.imagePullSecrets }} + imagePullSecrets: + {{- toYaml . | nindent 8 }} + {{- end }} + serviceAccountName: {{ include "infini-connect.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: 80 + protocol: TCP + livenessProbe: + httpGet: + path: / + port: http + readinessProbe: + httpGet: + path: / + port: http + resources: + {{- toYaml .Values.resources | nindent 12 }} + {{- 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/helm-charts/infini-connect/templates/hpa.yaml b/helm-charts/infini-connect/templates/hpa.yaml new file mode 100644 index 0000000..b0490af --- /dev/null +++ b/helm-charts/infini-connect/templates/hpa.yaml @@ -0,0 +1,28 @@ +{{- if .Values.autoscaling.enabled }} +apiVersion: autoscaling/v2beta1 +kind: HorizontalPodAutoscaler +metadata: + name: {{ include "infini-connect.fullname" . }} + labels: + {{- include "infini-connect.labels" . | nindent 4 }} +spec: + scaleTargetRef: + apiVersion: apps/v1 + kind: Deployment + name: {{ include "infini-connect.fullname" . }} + minReplicas: {{ .Values.autoscaling.minReplicas }} + maxReplicas: {{ .Values.autoscaling.maxReplicas }} + metrics: + {{- if .Values.autoscaling.targetCPUUtilizationPercentage }} + - type: Resource + resource: + name: cpu + targetAverageUtilization: {{ .Values.autoscaling.targetCPUUtilizationPercentage }} + {{- end }} + {{- if .Values.autoscaling.targetMemoryUtilizationPercentage }} + - type: Resource + resource: + name: memory + targetAverageUtilization: {{ .Values.autoscaling.targetMemoryUtilizationPercentage }} + {{- end }} +{{- end }} diff --git a/helm-charts/infini-connect/templates/ingress.yaml b/helm-charts/infini-connect/templates/ingress.yaml new file mode 100644 index 0000000..c147440 --- /dev/null +++ b/helm-charts/infini-connect/templates/ingress.yaml @@ -0,0 +1,62 @@ +{{- if .Values.ingress.enabled -}} +{{- $fullName := include "infini-connect.fullname" . -}} +{{- $svcPort := .Values.service.ports.http.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 }} + namespace: {{ .Values.namespace }} + labels: + {{- include "infini-connect.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 }} \ No newline at end of file diff --git a/helm-charts/infini-connect/templates/service.yaml b/helm-charts/infini-connect/templates/service.yaml new file mode 100644 index 0000000..ffbafed --- /dev/null +++ b/helm-charts/infini-connect/templates/service.yaml @@ -0,0 +1,20 @@ +apiVersion: v1 +kind: Service +metadata: + name: {{ include "infini-connect.fullname" . }} + namespace: {{ .Values.namespace }} + labels: + {{- include "infini-connect.labels" . | nindent 4 }} +spec: + type: {{ .Values.service.type }} + ports: + - port: {{ .Values.service.ports.http.port }} + targetPort: {{ .Values.service.ports.http.targetPort }} + protocol: {{ .Values.service.ports.http.protocol }} + name: http + - port: {{ .Values.service.ports.https.port }} + targetPort: {{ .Values.service.ports.https.targetPort }} + protocol: {{ .Values.service.ports.https.protocol }} + name: https + selector: + {{- include "infini-connect.selectorLabels" . | nindent 4 }} diff --git a/helm-charts/infini-connect/templates/serviceaccount.yaml b/helm-charts/infini-connect/templates/serviceaccount.yaml new file mode 100644 index 0000000..7071852 --- /dev/null +++ b/helm-charts/infini-connect/templates/serviceaccount.yaml @@ -0,0 +1,13 @@ +{{- if .Values.serviceAccount.create -}} +apiVersion: v1 +kind: ServiceAccount +metadata: + name: {{ include "infini-connect.serviceAccountName" . }} + namespace: {{ .Values.namespace }} + labels: + {{- include "infini-connect.labels" . | nindent 4 }} + {{- with .Values.serviceAccount.annotations }} + annotations: + {{- toYaml . | nindent 4 }} + {{- end }} +{{- end }} diff --git a/helm-charts/infini-connect/values.yaml b/helm-charts/infini-connect/values.yaml new file mode 100644 index 0000000..b1e3776 --- /dev/null +++ b/helm-charts/infini-connect/values.yaml @@ -0,0 +1,94 @@ +# Default values for infini-connect. +# This is a YAML-formatted file. +# Declare variables to be passed into your templates. + +replicaCount: 1 + +namespace: defualt + +environment: dev + +image: + repository: infini-connect + pullPolicy: Always + # Overrides the image tag whose default is the chart appVersion. + tag: "dev" + +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 + ports: + http: + port: 80 + targetPort: http + protocol: TCP + https: + port: 443 + targetPort: https + protocol: TCP + +ingress: + enabled: true + className: "" + port: 80 + annotations: + nginx.ingress.kubernetes.io/ssl-redirect: "false" + hosts: + - host: "https://api.infini-connect.devoteam.nl" + paths: + - path: / + pathType: Prefix + 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: {} diff --git a/helm-charts/prod/values.yaml b/helm-charts/prod/values.yaml new file mode 100644 index 0000000..3bc07a5 --- /dev/null +++ b/helm-charts/prod/values.yaml @@ -0,0 +1,95 @@ +# Default values for infini-connect-ui. +# This is a YAML-formatted file. +# Declare variables to be passed into your templates. + +replicaCount: 1 + +namespace: ic-core-acc + +environment: prod + +image: + repository: inficonnectacr.azurecr.io/infini-connect-ui + pullPolicy: Always + # Overrides the image tag whose default is the chart appVersion. + tag: "latest" + +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 + ports: + http: + port: 80 + targetPort: http + protocol: TCP + https: + port: 443 + targetPort: https + protocol: TCP + + +ingress: + enabled: true + className: "" + port: 80 + annotations: + nginx.ingress.kubernetes.io/ssl-redirect: "false" + hosts: + - host: "https://api.infini-connect.devoteam.nl" + paths: + - path: / + pathType: Prefix + 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: {}