added repo

This commit is contained in:
Your Name
2026-08-26 03:39:42 +05:30
parent 45c25a95af
commit b8575bb8b9
6889 changed files with 1217125 additions and 0 deletions
@@ -0,0 +1,16 @@
1. Get the application URL by running these commands:
{{- if contains "NodePort" .Values.service.type }}
export NODE_PORT=$(kubectl get --namespace {{ .Release.Namespace }} -o jsonpath="{.spec.ports[0].nodePort}" services {{ include "paused-container.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 "paused-container.fullname" . }}'
export SERVICE_IP=$(kubectl get svc --namespace {{ .Release.Namespace }} {{ include "paused-container.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 "paused-container.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 }}
@@ -0,0 +1,65 @@
{{/*
Expand the name of the chart.
*/}}
{{- define "paused-container.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 "paused-container.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 "paused-container.chart" -}}
{{- printf "%s-%s" .Chart.Name .Chart.Version | replace "+" "_" | trunc 63 | trimSuffix "-" }}
{{- end }}
{{/*
Common labels
*/}}
{{- define "paused-container.labels" -}}
helm.sh/chart: {{ include "paused-container.chart" . }}
{{ include "paused-container.selectorLabels" . }}
{{- if .Chart.AppVersion }}
app.kubernetes.io/version: {{ .Chart.AppVersion | quote }}
{{- end }}
app.kubernetes.io/managed-by: {{ .Release.Service }}
{{- end }}
{{/*
Selector labels
*/}}
{{- define "paused-container.selectorLabels" -}}
{{/*
app.kubernetes.io/name: {{ include "paused-container.name" . }}
app.kubernetes.io/instance: {{ .Release.Name }}
*/}}
run: {{ .Release.Name }}
{{- end }}
{{/*
Create the name of the service account to use
*/}}
{{- define "paused-container.serviceAccountName" -}}
{{- if .Values.serviceAccount.create }}
{{- default (include "paused-container.fullname" .) .Values.serviceAccount.name }}
{{- else }}
{{- default "default" .Values.serviceAccount.name }}
{{- end }}
{{- end }}
@@ -0,0 +1,70 @@
{{- $top := . }}
{{- range $deployments := .Values.deployments }}
---
apiVersion: apps/v1
kind: Deployment
metadata:
name: "{{ $deployments.nodepool }}-xyz"
namespace: "{{ $top.Namespace }}" # Add the namespace field
labels:
type: abcd
{{- with $top.Values.extraLabels }}
{{ toYaml . | indent 2 }}
{{- end }}
spec:
replicas: {{ $deployments.replicaCount }}
selector:
matchLabels:
type: abcd
strategy:
rollingUpdate:
maxSurge: 25%
maxUnavailable: 25%
type: RollingUpdate
template:
metadata:
labels:
type: abcd
{{- with $top.Values.extraLabels }}
{{ toYaml . | indent 4 }}
{{- end }}
spec:
serviceAccountName: xyz
priorityClassName: {{ $top.Values.priorityClass.name }}
{{- if $top.Values.affinity }}
affinity:
{{ toYaml $top.Values.affinity | indent 4 }}
{{- end }}
{{- if $top.Values.topologySpreadConstraints }}
topologySpreadConstraints:
{{ toYaml $top.Values.topologySpreadConstraints | indent 2 }}
{{- end }}
containers:
- name: "{{ $deployments.nodepool }}-{{ $top.Chart.Name }}"
imagePullPolicy: {{ $top.Values.image.pullPolicy }}
image: "{{ $top.Values.image.repository }}:{{ $top.Values.image.tag | default $top.Chart.AppVersion }}"
ports:
- name: http
containerPort: 80
protocol: TCP
livenessProbe:
httpGet:
path: /
port: http
readinessProbe:
httpGet:
path: /
port: http
resources:
requests:
cpu: {{ $deployments.cpuRequest | default 2 }}
memory: {{ $deployments.memoryRequest | default "4Gi" | quote }}
nodeSelector:
dedicated: {{ $deployments.nodepool }}
tolerations:
- effect: NoSchedule
key: dedicated
operator: Equal
value: {{ $deployments.nodepool }}
---
{{- end }}
@@ -0,0 +1,15 @@
apiVersion: v1
kind: Service
metadata:
name: {{ include "paused-container.fullname" . }}
labels:
{{- include "paused-container.labels" . | nindent 4 }}
spec:
type: {{ .Values.service.type }}
ports:
- port: {{ .Values.service.port }}
targetPort: http
protocol: TCP
name: http
selector:
{{- include "paused-container.selectorLabels" . | nindent 4 }}
@@ -0,0 +1,12 @@
{{- if .Values.serviceAccount.create -}}
apiVersion: v1
kind: ServiceAccount
metadata:
name: {{ include "paused-container.serviceAccountName" . }}
labels:
{{- include "paused-container.labels" . | nindent 4 }}
{{- with .Values.serviceAccount.annotations }}
annotations:
{{- toYaml . | nindent 4 }}
{{- end }}
{{- end }}