diff --git a/charts/stress-nonweb/.helmignore b/charts/stress-nonweb/.helmignore new file mode 100644 index 0000000..0e8a0eb --- /dev/null +++ b/charts/stress-nonweb/.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/charts/stress-nonweb/Chart.yaml b/charts/stress-nonweb/Chart.yaml new file mode 100644 index 0000000..967720e --- /dev/null +++ b/charts/stress-nonweb/Chart.yaml @@ -0,0 +1,21 @@ +apiVersion: v2 +name: stress-nonweb +description: A Helm chart for Kubernetes + +# To use chart you can use the following commands (small image size is default): +# helm upgrade --install releaseName --set imageSize=small|medium|large --set ingress.url=something.k3s.brokencrystals.nexploit.app . --namespace distributor --wait + +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/) +keywords: +- stress-nonweb +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/charts/stress-nonweb/templates/deployment.yaml b/charts/stress-nonweb/templates/deployment.yaml new file mode 100644 index 0000000..6f7e820 --- /dev/null +++ b/charts/stress-nonweb/templates/deployment.yaml @@ -0,0 +1,44 @@ +--- +apiVersion: apps/v1 +kind: Deployment +metadata: + name: {{ .Release.Name }} + namespace: {{ .Release.Namespace }} + labels: + app: {{ .Release.Name }} + app.kubernetes.io/instance: {{ .Release.Name }} +spec: + selector: + matchLabels: + app: {{ .Release.Name }} + app.kubernetes.io/instance: {{ .Release.Name }} + template: + metadata: + labels: + app.kubernetes.io/instance: {{ .Release.Name }} + app: {{ .Release.Name }} + spec: + containers: + - name: {{ .Chart.Name }} + image: ghcr.io/neuralegion/stress_nonweb:{{ .Values.imageSize }} + resources: + requests: + cpu: 50m + memory: 128Mi + limits: + cpu: 250m + memory: 512Mi + livenessProbe: + httpGet: + path: / + port: 3000 + scheme: HTTP + initialDelaySeconds: 30 + periodSeconds: 30 + startupProbe: + httpGet: + path: / + port: 3000 + scheme: HTTP + imagePullSecrets: + - name: pull-ghcr-io diff --git a/charts/stress-nonweb/templates/ingress.yaml b/charts/stress-nonweb/templates/ingress.yaml new file mode 100644 index 0000000..05b30aa --- /dev/null +++ b/charts/stress-nonweb/templates/ingress.yaml @@ -0,0 +1,29 @@ +--- +apiVersion: networking.k8s.io/v1 +kind: Ingress +metadata: + name: {{ .Release.Name }} + namespace: {{ .Release.Namespace }} + annotations: + nginx.ingress.kubernetes.io/proxy-ssl-protocols: "TLSv1.1 TLSv1.2" + nginx.ingress.kubernetes.io/ssl-redirect: "false" + {{ if eq .Values.ingress.cert "" }} + cert-manager.io/cluster-issuer: letsencrypt-cf-prod + {{ end }} +spec: + ingressClassName: nginx + tls: + - hosts: + - {{ .Values.ingress.url }} + secretName: {{ if eq .Values.ingress.cert "" }}distributorwildcard{{ else }}{{ .Values.ingress.cert }}{{ end }} + rules: + - host: {{ .Values.ingress.url }} + http: + paths: + - path: / + pathType: Prefix + backend: + service: + name: {{ .Release.Name }} + port: + number: 3000 diff --git a/charts/stress-nonweb/templates/service.yaml b/charts/stress-nonweb/templates/service.yaml new file mode 100644 index 0000000..c7f91db --- /dev/null +++ b/charts/stress-nonweb/templates/service.yaml @@ -0,0 +1,11 @@ +apiVersion: v1 +kind: Service +metadata: + name: {{ .Release.Name }} + namespace: {{ .Release.Namespace }} +spec: + ports: + - port: 3000 + selector: + app.kubernetes.io/instance: {{ .Release.Name }} + app: {{ .Release.Name }} diff --git a/charts/stress-nonweb/values.yaml b/charts/stress-nonweb/values.yaml new file mode 100644 index 0000000..354980b --- /dev/null +++ b/charts/stress-nonweb/values.yaml @@ -0,0 +1,5 @@ +ingress: + url: dev.vuln.nexploit.app + cert: "" + authlevel: "." +imageSize: "small"