Skip to content

Tags: teguru-labs/helm-charts

Tags

instant-chart-0.4.2

Toggle instant-chart-0.4.2's commit message
fix(instant-chart): wrong ingress.tls schema in the default values.yaml

instant-chart-0.4.1

Toggle instant-chart-0.4.1's commit message
refactor(instant-chart): release v0.4.1

instant-chart-0.4.0

Toggle instant-chart-0.4.0's commit message
feat(instant-chart)!: use the first container port as Service ports

instant-chart-0.3.0

Toggle instant-chart-0.3.0's commit message
feat(instant-chart): patch container images for use with FluxCD

instant-chart-0.2.1

Toggle instant-chart-0.2.1's commit message
fix(instant-chart): startupProbe is duplicated

instant-chart-0.2.0

Toggle instant-chart-0.2.0's commit message
feat(instant-chart): add healthcheck probe

The container can be enabled `livenessProbe`, `readinessProbe` or `startupProbe`
by adding these field.

By default, these probes will use `tcpSocket` with the first container port (default: `80`).

For example:

```yaml
containers:
- image: nginx:alpine
  livenessProbe:
    enabled: true
```

The result:
```yaml
      containers:
      - name: container-0
        image: nginx:alpine
        livenessProbe:
          tcpSocket:
            port: 80
          failureThreshold: 5
          initialDelaySeconds: 10
          periodSeconds: 10
          successThreshold: 1
          timeoutSeconds: 5
```

instant-chart-0.1.6

Toggle instant-chart-0.1.6's commit message
fix(instant-chart): missing serviceAccountName field

The Deployment.spec.serviceAccountName is missing when having Values:

```yaml
serviceAccount:
  create: false
  name: external-service-account
```

1. If `serviceAccount.create=false` and `serviceAccount.name=external-service-account`:

```yaml
serviceAccountName: external-service-account
```

2. If `serviceAccount.create=false` and `serviceAccount.name=""`:

```yaml
serviceAccountName: default
```

instant-chart-0.1.5

Toggle instant-chart-0.1.5's commit message
release(instant-chart): v0.1.5

instant-chart-0.1.4

Toggle instant-chart-0.1.4's commit message

Verified

This commit was created on GitHub.com and signed with GitHub’s verified signature.
refactor(instant-chart): release v0.1.4

instant-chart-0.1.3

Toggle instant-chart-0.1.3's commit message
refactor(instant-chart): add checksum for configmap & secret