All checks were successful
		
		
	
	Build Helm Chart / helm-package (push) Successful in 6s
				
			Update Excalidraw Helm chart to version 1.0.1 This commit updates the Excalidraw Helm chart's metadata, changing the appVersion from 0.17.6 to 0.18.0 and the chart version from 1.0.0 to 1.0.1. These changes reflect an update to the application version to ensure compatibility with new features or fixes. Additionally, in the deployment configuration, the container port is now set directly to 80 instead of using a default provided by the service values. This change simplifies the deployment configuration and ensures that the container listens on the expected port regardless of service value changes. ```
		
			
				
	
	
		
			67 lines
		
	
	
		
			2.2 KiB
		
	
	
	
		
			YAML
		
	
	
	
	
	
			
		
		
	
	
			67 lines
		
	
	
		
			2.2 KiB
		
	
	
	
		
			YAML
		
	
	
	
	
	
apiVersion: apps/v1
 | 
						|
kind: Deployment
 | 
						|
metadata:
 | 
						|
  name: excalidraw
 | 
						|
  labels:
 | 
						|
    app.kubernetes.io/name: excalidraw
 | 
						|
    app.kubernetes.io/instance: {{ .Release.Name | quote }}
 | 
						|
    app.kubernetes.io/version: {{ .Chart.AppVersion | quote }}
 | 
						|
    app.kubernetes.io/managed-by: {{ .Release.Service | quote }}
 | 
						|
spec:
 | 
						|
  {{- if not .Values.autoscaling.enabled }}
 | 
						|
  replicas: {{ .Values.replicaCount }}
 | 
						|
  {{- end }}
 | 
						|
  strategy:
 | 
						|
    {{- .Values.deployment.strategy | toYaml | nindent 4 }}
 | 
						|
  selector:
 | 
						|
    matchLabels:
 | 
						|
      app.kubernetes.io/name: excalidraw
 | 
						|
      app.kubernetes.io/instance: {{ .Release.Name }}
 | 
						|
  template:
 | 
						|
    metadata:
 | 
						|
      {{- with .Values.podAnnotations }}
 | 
						|
      annotations:
 | 
						|
        {{- toYaml . | nindent 8 }}
 | 
						|
      {{- end }}
 | 
						|
      labels:
 | 
						|
        app.kubernetes.io/name: excalidraw
 | 
						|
        app.kubernetes.io/instance: {{ .Release.Name | quote }}
 | 
						|
        app.kubernetes.io/version: {{ .Chart.AppVersion | quote }}
 | 
						|
        app.kubernetes.io/managed-by: {{ .Release.Service | quote }}
 | 
						|
    spec:
 | 
						|
      {{- with .Values.imagePullSecrets }}
 | 
						|
      imagePullSecrets:
 | 
						|
        {{- toYaml . | nindent 8 }}
 | 
						|
      {{- end }}
 | 
						|
      serviceAccountName: {{ .Values.serviceAccount.name | default "excalidraw" }}
 | 
						|
      securityContext:
 | 
						|
        {{- toYaml .Values.podSecurityContext | nindent 8 }}
 | 
						|
      {{- if .Values.initContainers }}
 | 
						|
      initContainers:
 | 
						|
        {{- toYaml .Values.initContainers | nindent 8 }}
 | 
						|
      {{- end }}
 | 
						|
      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
 | 
						|
          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 }}
 |