From 65c58b9dbc3bcee0a7cdbcc165f78deedb8adc84 Mon Sep 17 00:00:00 2001 From: celebrateyang Date: Mon, 30 Sep 2024 15:08:30 +0800 Subject: [PATCH] add deploy files --- .circleci/config.yml | 109 ++++++++++++++++++ cobalt_chart/.helmignore | 23 ++++ cobalt_chart/Chart.yaml | 24 ++++ cobalt_chart/templates/NOTES.txt | 22 ++++ cobalt_chart/templates/_helpers.tpl | 51 ++++++++ cobalt_chart/templates/deployment.yaml | 62 ++++++++++ cobalt_chart/templates/hpa.yaml | 32 +++++ cobalt_chart/templates/ingress.yaml | 61 ++++++++++ cobalt_chart/templates/service.yaml | 15 +++ .../templates/tests/test-connection.yaml | 15 +++ cobalt_chart/values.yaml | 106 +++++++++++++++++ 11 files changed, 520 insertions(+) create mode 100644 .circleci/config.yml create mode 100644 cobalt_chart/.helmignore create mode 100644 cobalt_chart/Chart.yaml create mode 100644 cobalt_chart/templates/NOTES.txt create mode 100644 cobalt_chart/templates/_helpers.tpl create mode 100644 cobalt_chart/templates/deployment.yaml create mode 100644 cobalt_chart/templates/hpa.yaml create mode 100644 cobalt_chart/templates/ingress.yaml create mode 100644 cobalt_chart/templates/service.yaml create mode 100644 cobalt_chart/templates/tests/test-connection.yaml create mode 100644 cobalt_chart/values.yaml diff --git a/.circleci/config.yml b/.circleci/config.yml new file mode 100644 index 00000000..d0800000 --- /dev/null +++ b/.circleci/config.yml @@ -0,0 +1,109 @@ +version: 2.1 + +orbs: + evilms: evilms/gcr-cleaner@0.1.9 + +workflows: + version: 2 + deploy-process: + jobs: + - build_docker: + name: build_docker_infra + tag_prefix: staging + filters: + branches: + only: + - main + - evilms/single_image: + number: 2 + image: 'kubein/cobalt' + tag_regex: 'staging.*' + - deploy: + name: deploy_infra + tag_prefix: staging + requires: + - build_docker_infra + filters: + branches: + only: + - main + +executors: + gcloud-helm: + docker: + - image: docker.io/celebrateyang/gcloud-helm:282.0.0 +jobs: + build_docker: + executor: gcloud-helm + parameters: + tag_prefix: + type: string + environment: + GCP_PROJECT_ID: ebay-mag + IMAGE: gcr.io/ebay-mag/kubein/cobalt + steps: + - attach_workspace: + at: . + - checkout + - setup_remote_docker: + version: docker23 + docker_layer_caching: true + - run: + name: Set environment variables + command: | + echo 'export IMAGE_TAG=<< parameters.tag_prefix >>-${CIRCLE_SHA1}' >> $BASH_ENV + echo 'export BUILDER_TAG=<< parameters.tag_prefix >>-builder' >> $BASH_ENV + - run: + name: Setup Google Cloud SDK + command: | + echo $GCLOUD_SERVICE_KEY > ${HOME}/gcloud-service-key.json + gcloud auth activate-service-account --key-file=${HOME}/gcloud-service-key.json + gcloud --quiet config set project ebay-mag + gcloud --quiet auth configure-docker + gcloud --quiet config set compute/zone europe-west4-b + gcloud --quiet container clusters get-credentials staging + - run: + name: Pull builder and main docker images to use layer caching + command: | + source $BASH_ENV + docker pull ${IMAGE}:latest || true + docker pull ${IMAGE}:builder || true + - run: + name: Build Docker Image + command: | + source $BASH_ENV + docker build -t ${IMAGE}:${IMAGE_TAG} --cache-from ${IMAGE}:builder --cache-from ${IMAGE}:latest . + + - run: + name: Push + command: | + source $BASH_ENV + docker push ${IMAGE}:${IMAGE_TAG} + deploy: + executor: gcloud-helm + parameters: + tag_prefix: + type: string + environment: + IMAGE: gcr.io/ebay-mag/kubein/cobalt + steps: + - attach_workspace: + at: . + - checkout + - run: + name: Setup Google Cloud SDK + command: | + echo $GCLOUD_SERVICE_KEY > ${HOME}/gcloud-service-key.json + gcloud auth activate-service-account --key-file=${HOME}/gcloud-service-key.json + gcloud --quiet config set project ebay-mag + gcloud --quiet auth configure-docker + gcloud --quiet config set compute/zone europe-west4-b + gcloud --quiet container clusters get-credentials staging + - run: + name: Get current helm values + command: | + helm get values cobalt -n infra -o yaml > /tmp/values.yaml + - run: + name: Deploy + command: | + helm upgrade --install cobalt ./cobalt-chart -n infra -f /tmp/values.yaml --set image.repository=${IMAGE},image.tag=<< parameters.tag_prefix >>-${CIRCLE_SHA1} --history-max=3 --wait --atomic --timeout 4m0s diff --git a/cobalt_chart/.helmignore b/cobalt_chart/.helmignore new file mode 100644 index 00000000..0e8a0eb3 --- /dev/null +++ b/cobalt_chart/.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/cobalt_chart/Chart.yaml b/cobalt_chart/Chart.yaml new file mode 100644 index 00000000..d2a7faaa --- /dev/null +++ b/cobalt_chart/Chart.yaml @@ -0,0 +1,24 @@ +apiVersion: v2 +name: cobalt_chart +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/cobalt_chart/templates/NOTES.txt b/cobalt_chart/templates/NOTES.txt new file mode 100644 index 00000000..d874c351 --- /dev/null +++ b/cobalt_chart/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 "cobalt_chart.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 "cobalt_chart.fullname" . }}' + export SERVICE_IP=$(kubectl get svc --namespace {{ .Release.Namespace }} {{ include "cobalt_chart.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 "cobalt_chart.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/cobalt_chart/templates/_helpers.tpl b/cobalt_chart/templates/_helpers.tpl new file mode 100644 index 00000000..66ecaa63 --- /dev/null +++ b/cobalt_chart/templates/_helpers.tpl @@ -0,0 +1,51 @@ +{{/* +Expand the name of the chart. +*/}} +{{- define "cobalt_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 "cobalt_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 "cobalt_chart.chart" -}} +{{- printf "%s-%s" .Chart.Name .Chart.Version | replace "+" "_" | trunc 63 | trimSuffix "-" }} +{{- end }} + +{{/* +Common labels +*/}} +{{- define "cobalt_chart.labels" -}} +helm.sh/chart: {{ include "cobalt_chart.chart" . }} +{{ include "cobalt_chart.selectorLabels" . }} +{{- if .Chart.AppVersion }} +app.kubernetes.io/version: {{ .Chart.AppVersion | quote }} +{{- end }} +app.kubernetes.io/managed-by: {{ .Release.Service }} +{{- end }} + +{{/* +Selector labels +*/}} +{{- define "cobalt_chart.selectorLabels" -}} +app.kubernetes.io/name: {{ include "cobalt_chart.name" . }} +app.kubernetes.io/instance: {{ .Release.Name }} +{{- end }} diff --git a/cobalt_chart/templates/deployment.yaml b/cobalt_chart/templates/deployment.yaml new file mode 100644 index 00000000..b7090d29 --- /dev/null +++ b/cobalt_chart/templates/deployment.yaml @@ -0,0 +1,62 @@ +apiVersion: apps/v1 +kind: Deployment +metadata: + name: {{ include "cobalt_chart.fullname" . }} + labels: + {{- include "cobalt_chart.labels" . | nindent 4 }} +spec: + {{- if not .Values.autoscaling.enabled }} + replicas: {{ .Values.replicaCount }} + {{- end }} + selector: + matchLabels: + {{- include "cobalt_chart.selectorLabels" . | nindent 6 }} + template: + metadata: + {{- with .Values.podAnnotations }} + annotations: + {{- toYaml . | nindent 8 }} + {{- end }} + labels: + {{- include "cobalt_chart.labels" . | nindent 8 }} + {{- with .Values.podLabels }} + {{- toYaml . | nindent 8 }} + {{- end }} + spec: + {{- with .Values.imagePullSecrets }} + imagePullSecrets: + {{- toYaml . | nindent 8 }} + {{- end }} + 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: API_URL + value: https://cobalt.tianfujixing.com/9000 + - name: API_PORT + value: '9000' + - name: API_NAME + value: cobalt + 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/cobalt_chart/templates/hpa.yaml b/cobalt_chart/templates/hpa.yaml new file mode 100644 index 00000000..526b7289 --- /dev/null +++ b/cobalt_chart/templates/hpa.yaml @@ -0,0 +1,32 @@ +{{- if .Values.autoscaling.enabled }} +apiVersion: autoscaling/v2 +kind: HorizontalPodAutoscaler +metadata: + name: {{ include "cobalt_chart.fullname" . }} + labels: + {{- include "cobalt_chart.labels" . | nindent 4 }} +spec: + scaleTargetRef: + apiVersion: apps/v1 + kind: Deployment + name: {{ include "cobalt_chart.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/cobalt_chart/templates/ingress.yaml b/cobalt_chart/templates/ingress.yaml new file mode 100644 index 00000000..d1836e3b --- /dev/null +++ b/cobalt_chart/templates/ingress.yaml @@ -0,0 +1,61 @@ +{{- if .Values.ingress.enabled -}} +{{- $fullName := include "cobalt_chart.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 "cobalt_chart.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/cobalt_chart/templates/service.yaml b/cobalt_chart/templates/service.yaml new file mode 100644 index 00000000..ce2b9f0a --- /dev/null +++ b/cobalt_chart/templates/service.yaml @@ -0,0 +1,15 @@ +apiVersion: v1 +kind: Service +metadata: + name: {{ include "cobalt_chart.fullname" . }} + labels: + {{- include "cobalt_chart.labels" . | nindent 4 }} +spec: + type: {{ .Values.service.type }} + ports: + - port: {{ .Values.service.port }} + targetPort: {{ .Values.service.targetPort }} + protocol: TCP + name: http + selector: + {{- include "cobalt_chart.selectorLabels" . | nindent 4 }} diff --git a/cobalt_chart/templates/tests/test-connection.yaml b/cobalt_chart/templates/tests/test-connection.yaml new file mode 100644 index 00000000..36fb91de --- /dev/null +++ b/cobalt_chart/templates/tests/test-connection.yaml @@ -0,0 +1,15 @@ +apiVersion: v1 +kind: Pod +metadata: + name: "{{ include "cobalt_chart.fullname" . }}-test-connection" + labels: + {{- include "cobalt_chart.labels" . | nindent 4 }} + annotations: + "helm.sh/hook": test +spec: + containers: + - name: wget + image: busybox + command: ['wget'] + args: ['{{ include "cobalt_chart.fullname" . }}:{{ .Values.service.port }}'] + restartPolicy: Never diff --git a/cobalt_chart/values.yaml b/cobalt_chart/values.yaml new file mode 100644 index 00000000..39969495 --- /dev/null +++ b/cobalt_chart/values.yaml @@ -0,0 +1,106 @@ +# Default values for cobalt_chart. +# This is a YAML-formatted file. +# Declare variables to be passed into your templates. + +replicaCount: 1 + +image: + repository: gcr.io/ebay-mag/kubein/cobalt + pullPolicy: IfNotPresent + # Overrides the image tag whose default is the chart appVersion. + tag: "" + +imagePullSecrets: [] +nameOverride: "" +fullnameOverride: "" + + +podAnnotations: {} + +podSecurityContext: {} + # fsGroup: 2000 + +securityContext: {} + # capabilities: + # drop: + # - ALL + # readOnlyRootFilesystem: true + # runAsNonRoot: true + # runAsUser: 1000 + +service: + type: ClusterIP + port: 80 + targetPort: 9000 + +ingress: + enabled: true + className: "" + annotations: {networking.gke.io/managed-certificates: "spacex-tls"} + # kubernetes.io/ingress.class: nginx + # kubernetes.io/tls-acme: "true" + hosts: + - host: cobalt.tianfujixing.com + 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 + +livenessProbe: + httpGet: + path: / + port: http +readinessProbe: + httpGet: + path: / + port: http + +autoscaling: + enabled: false + minReplicas: 1 + maxReplicas: 100 + targetCPUUtilizationPercentage: 80 + # targetMemoryUtilizationPercentage: 80 + + + +nodeSelector: {} + +tolerations: [] + +affinity: + # Pod 反亲和性,确保多个 Pod 不会部署在同一个节点上 + podAntiAffinity: + requiredDuringSchedulingIgnoredDuringExecution: + - labelSelector: + matchExpressions: + - key: app.kubernetes.io/name # pod标签的key + operator: In + values: + - cobalt-chart # 应用名称 + topologyKey: "kubernetes.io/hostname" # 通过主机名来避免部署在相同的节点上 + + # Pod 亲和性,确保 Pod 只部署在节点池 autoscale-workers-2 中的节点上 + nodeAffinity: + requiredDuringSchedulingIgnoredDuringExecution: + nodeSelectorTerms: + - matchExpressions: + - key: cloud.google.com/gke-nodepool # 使用节点池的标签 + operator: In + values: + - autoscale-workers-2 # 确保只在 autoscale-workers-2 节点池中调度