Skip to content

A helm chart for "STAteful SIngle COntainers"

License

Notifications You must be signed in to change notification settings

flypenguin/helm-stasico

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

64 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Helm StaSiCo chart

TL;DR

Do you want to ...

  • ... quickly deploy a single container app on k8s?
  • ... which needs a volume attached for some stateful data?
  • ... and throw in some environment variables, resource requirements, etc.?
  • ... and preferably an ingress so it is picked up by your nginx-ingress and cert-manager?

Here's the chart for you, which reduces the boilerplace to a minimum. Just do this:

  • Add stasico repo to helm: helm repo add stasico https://flypenguin.github.io/helm-stasico/
  • Install a single container app to a cluster: helm install stasico/stasico -n my-app -f my-values.yaml

If you need examples, there's a whole directory of them.

Features

  • Can manage multiple volume mounts
  • Can manage multiple ports
  • Can manage multiple mounts from one volume into several directories
  • Simplified mount point management, simplified volume management from existing claims
  • And probably more ...

Requirements

  • None.

Limitations

  • Multi-container applications are not supported (stateful single container app, eh? :)
  • There is no database included, you have to take care of that yourself

Parameters

Parameter Description Default
affinity Define a Pod affinity   {}
application.name Define the name of the deployed app  unset, required
container.name Specify the container's name. Compatibility setting mostly. unset
container.ports Configure the container's ports (see also below) {}
image.pullPolicy container image pullPolicy Always
image.repository container image repository unset, required
image.tag container image tag latest
ingress.enabled Enable ingress false
ingress.annotations Define ingress annotations {}
ingress.hosts Define ingress hosts unset
ingress.path Set ingress path /
ingress.tls Define ingress TLS fields []
livenessProbe Define a liveness probe unset
nodeSelector Define a Pod nodeSelector  {}
persistence.mounts see below unset
persistence.simpleMount simplified key->value mount definitions, see below unset
persistence.volumes see below unset
persistence.volumesFromExistingClaims see below unset
persistence.volumeClaimTemplates see below unset
readinessProbe Define a readiness probe unset
resources Define Pod resources  {}
service.enabled Whether to create a service false
service.ports Define the Service's type  unset
service.type The Service type ClusterIP
tolerations Define Pod tolerations []

Examples

Again - a whole directory of examples is in this repo, and below is a working (!) Atlassian Confluence installation on K8S.

# values.yaml
applicationName: confluence

image:
  repository: atlassian/confluence-server
  tag: 6.6.4-alpine

container:
  ports:
    http:
      containerPort: 8090
      protocol: TCP
    synchrony:
      containerPort: 8091
      protocol: TCP
  env:
    CATALINA_CONNECTOR_PROXYNAME: confluence.mydomain.com
    CATALINA_CONNECTOR_PROXYPORT: "443"
    CATALINA_CONNECTOR_SCHEME: https
    CATALINA_CONNECTOR_SECURE: "true"
    JVM_MINIMUM_MEMORY: "1024m"
    JVM_MAXIMUM_MEMORY: "1024m"
    JVM_SUPPORT_RECOMMENDED_ARGS: -XX:MaxMetaspaceSize=512m -XX:MaxDirectMemorySize=10m -Dsynchrony.memory.max=0m

persistence:
  simpleMounts:
    data: /var/atlassian/application-data/confluence
  volumeClaimTemplates:
    data:
      size: 32Gi
      storageClassName: default

service:
  enabled: true
  ports:
    http:
      port: 80
      targetPort: http
      protocol: TCP
    synchrony:
      port: 8091
      targetPort: synchrony
      protocol: TCP

ingress:
  enabled: true
  annotations:
    kubernetes.io/ingress.class: nginx
    certmanager.k8s.io/cluster-issuer: letsencrypt-prod
  path: /
  hosts:
    - confluence.my-domain.com
  tls:
    - secretName: tls-confluence-my-domain
      hosts:
        - confluence.my-domain.com

Persistence mounts

The persistence.mounts map is directly translated into the volumeMounts section of the stateful container.

# values.yaml
persistence:
  simpleMounts:
    # as many as you like
    MY_SIMPLE_MOUNT: /usr/local/stasico
  mounts:
    # as many as you like, will be used exactly as is
    - name: MY_MOUNT
      mountPath: /my/mount/path
      subPath: IAmASubPath

# WILL BECOME THIS IN THE StatefulSet OBJECT:

# statefulset.yaml -> RESULT
spec:
  template:
    spec:
      containers:
        - name: my-container
          # this will be generated
          volumeMounts:
            - name: MY_SIMPLE_MOUNT
              mountPath: /usr/local/stasico
            - name: MY_MOUNT
              mountPath: /my/mount/path
              subPath: IAmASubPath

Persistence volumes

The persistence.volumes follow the same principle as persistence.mounts, just like that:

# values.yaml
persistence:
  volumes:
    DATA_IS_THE_NAME:
      persistentVolumeClaim:
        claimName: schmoo-claim

# statefulset.yaml -> RESULT
spec:
  template:
    spec:
      volumes:
        - name: DATA_IS_THE_NAME
          persistentVolumeClaim:
            claimName: schmoo-claim

Persistence volumesFromExistingClaims

This is a convenience wrapper for existing claims. The example below will produce the exact same result in the StatefulSet as the the previous one.

# values.yaml
persistence:
  volumesFromExistingClaims:
    DATA_IS_THE_NAME: schmoo-claim

# statefulset.yaml -> RESULT
_
# SAME RESULT AS LAST EXAMPLE

Persistence volumeClaimTemplates

In case you want to have dynamic provisioning you can use the volumeClaimTemplates map to create several of those. Some examples to show you the general idea of it. You can mix and match the examples, and you can define more than one volumeClaimTemplate in your values.yaml.

Simple volume, just use a size

# values.yaml
persistence:
  volumeClaimTemplates:
    data:
      size: 32Gi

# statefulset.yaml -> RESULT
spec:
  volumeClaimTemplates:
    - metadata:
        name: data
        labels:
          app.kubernetes.io/name: example-app
          app.kubernetes.io/instance: test-me
      spec:
        accessModes:
          - ReadWriteOnce
        resources:
          requests:
            storage: "32Gi"
        storageClassName: ""

Use accessModes and some matchLabels

# values.yaml
persistence:
  volumeClaimTemplates:
    data2:
      accessModes:
        - ReadWriteMany
      matchLabels:
        match: me

# statefulset.yaml -> RESULT
spec:
  volumeClaimTemplates:
    - metadata:
        name: data2
        labels:
          app.kubernetes.io/name: example-app
          app.kubernetes.io/instance: test-me
      spec:
        accessModes:
          - ReadWriteMany
        resources:
          requests:
            storage: "8Gi"
        selector:
          matchLabels:
            match: me

        storageClassName: ""

Using labels, storageClassName and some matchExpressions

persistence:
  volumeClaimTemplates:
    data3:
      labels:
        purpose: data
        type: cache
      matchExpressions:
        "i am very": expressive
      storageClassName: myStorageClass

# statefulset.yaml -> RESULT
spec:
  volumeClaimTemplates:
    - metadata:
        name: data3
        labels:
          app.kubernetes.io/name: example-app
          app.kubernetes.io/instance: test-me
          "app.kubernetes.io/example-app/purpose": "data"
          "app.kubernetes.io/example-app/type": "cache"
      spec:
        accessModes:
          - ReadWriteOnce
        resources:
          requests:
            storage: "8Gi"
        selector:
          matchExpressions:
            i am very: expressive

        storageClassName: "myStorageClass"```

Container ports

The ports of a container are configured through container.ports, which follows the same name_key -> object principle as the previous examples.

# values.yaml
container:
  ports:
    http:
      containerPort: 8080
      protocol: TCP

# statefulset.yaml -> RESULT
spec:
  template:
    spec:
      containers:
        - name: my-container
          ports:
            - name: http
              containerPort: 8080
              protocol: TCP```

About

A helm chart for "STAteful SIngle COntainers"

Resources

License

Stars

Watchers

Forks

Packages

No packages published