diff --git a/charts/ldap-injection/.helmignore b/charts/ldap-injection/.helmignore new file mode 100644 index 0000000..0e8a0eb --- /dev/null +++ b/charts/ldap-injection/.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/ldap-injection/Chart.yaml b/charts/ldap-injection/Chart.yaml new file mode 100644 index 0000000..1963f8e --- /dev/null +++ b/charts/ldap-injection/Chart.yaml @@ -0,0 +1,28 @@ +apiVersion: v2 +name: ldap-injection +description: A Helm chart for Kubernetes + + ldap-injection app + +# 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/) +keywords: +- ldap-injection +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/ldap-injection/templates/deployment.yaml b/charts/ldap-injection/templates/deployment.yaml new file mode 100644 index 0000000..b4066cb --- /dev/null +++ b/charts/ldap-injection/templates/deployment.yaml @@ -0,0 +1,65 @@ +--- +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: + hostAliases: + - ip: "127.0.0.1" + hostnames: + - "openldap-container" + + restartPolicy: Always + containers: + - name: {{ .Chart.Name }} + image: brightsec/ldap-injection + imagePullPolicy: Always + ports: + - containerPort: 80 + resources: + requests: + cpu: 25m + memory: 128Mi + limits: + cpu: 100m + memory: 256Mi + livenessProbe: + httpGet: + path: / + port: 80 + scheme: HTTP + initialDelaySeconds: 30 + periodSeconds: 30 + + - name: openldap-container + image: osixia/openldap:1.2.2 + imagePullPolicy: Always + ports: + - containerPort: 389 + resources: + requests: + cpu: 125m + memory: 1G + limits: + cpu: 250m + memory: 2G + livenessProbe: + tcpSocket: + port: 389 + initialDelaySeconds: 30 + periodSeconds: 30 + diff --git a/charts/ldap-injection/templates/ingress.yaml b/charts/ldap-injection/templates/ingress.yaml new file mode 100644 index 0000000..4ecf68b --- /dev/null +++ b/charts/ldap-injection/templates/ingress.yaml @@ -0,0 +1,29 @@ +--- +apiVersion: networking.k8s.io/v1 +kind: Ingress +metadata: + name: {{ .Release.Name }} + namespace: {{ .Release.Namespace }} + annotations: + kubernetes.io/ingress.class: nginx + 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: + 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: 80 diff --git a/charts/ldap-injection/templates/service.yaml b/charts/ldap-injection/templates/service.yaml new file mode 100644 index 0000000..407d2d4 --- /dev/null +++ b/charts/ldap-injection/templates/service.yaml @@ -0,0 +1,13 @@ +apiVersion: v1 +kind: Service +metadata: + name: {{ .Release.Name }} + namespace: {{ .Release.Namespace }} +spec: + ports: + - name: http + port: 80 + targetPort: 80 + selector: + app.kubernetes.io/instance: {{ .Release.Name }} + app: {{ .Release.Name }} diff --git a/charts/ldap-injection/values.yaml b/charts/ldap-injection/values.yaml new file mode 100644 index 0000000..02f27a6 --- /dev/null +++ b/charts/ldap-injection/values.yaml @@ -0,0 +1,4 @@ +ingress: + url: dev.vuln.nexploit.app + cert: "" + authlevel: "."