Commit 91dcf1c2 authored by Pelayo Torres's avatar Pelayo Torres
Browse files

Merge branch 'staging' into OCF112-security-psk-method-authentication-and-authorization

parents 1fb91bf7 a1805f51
Loading
Loading
Loading
Loading
Loading
+4 −0
Original line number Original line Diff line number Diff line
@@ -68,6 +68,10 @@ dependencies:
    version: "*"
    version: "*"
  - name: renderer
  - name: renderer
    version: "*"
    version: "*"
  - name: celery-beat
    version: "*"
  - name: celery-worker
    version: "*"
  - name: "tempo"
  - name: "tempo"
    condition: tempo.enabled
    condition: tempo.enabled
    repository: "https://grafana.github.io/helm-charts"
    repository: "https://grafana.github.io/helm-charts"
+23 −0
Original line number Original line Diff line number Diff line
# 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/
+24 −0
Original line number Original line Diff line number Diff line
apiVersion: v2
name: celery-beat
description: A Helm chart for Kubernetes of celery-beat

# 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/)
version: 0.1.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.16.0"
 No newline at end of file
+67 −0
Original line number Original line Diff line number Diff line
# celery-beat

![Version: 0.1.0](https://img.shields.io/badge/Version-0.1.0-informational?style=flat-square) ![Type: application](https://img.shields.io/badge/Type-application-informational?style=flat-square) ![AppVersion: 1.16.0](https://img.shields.io/badge/AppVersion-1.16.0-informational?style=flat-square)

A Helm chart for Kubernetes of celery-beat

## Values

| Key | Type | Default | Description |
|-----|------|---------|-------------|
| affinity | object | `{}` |  |
| autoscaling.enabled | bool | `false` |  |
| autoscaling.maxReplicas | int | `100` |  |
| autoscaling.minReplicas | int | `1` |  |
| autoscaling.targetCPUUtilizationPercentage | int | `80` |  |
| env.capifHostname | string | `"capif"` |  |
| env.logLevel | string | `"INFO"` |  |
| env.mongoInitdbRootPassword | string | `"example"` |  |
| env.mongoInitdbRootUsername | string | `"root"` |  |
| env.monitoring | string | `"true"` |  |
| env.vaultAccessToken | string | `"dev-only-token"` |  |
| env.vaultHostname | string | `"vault"` |  |
| env.vaultPort | int | `8200` |  |
| fullnameOverride | string | `""` |  |
| image.pullPolicy | string | `"Always"` |  |
| image.repository | string | `"celery-beat"` |  |
| image.tag | string | `""` |  |
| imagePullSecrets | list | `[]` |  |
| ingress.annotations | object | `{}` |  |
| ingress.className | string | `""` |  |
| ingress.enabled | bool | `false` |  |
| ingress.hosts[0].host | string | `"chart-example.local"` |  |
| ingress.hosts[0].paths[0].path | string | `"/"` |  |
| ingress.hosts[0].paths[0].pathType | string | `"ImplementationSpecific"` |  |
| ingress.tls | list | `[]` |  |
| livenessProbe | string | `nil` |  |
| nameOverride | string | `""` |  |
| nodeSelector | object | `{}` |  |
| podAnnotations | object | `{}` |  |
| podLabels | object | `{}` |  |
| podSecurityContext | object | `{}` |  |
| readinessProbe.initialDelaySeconds | int | `10` |  |
| readinessProbe.periodSeconds | int | `5` |  |
| readinessProbe.tcpSocket.port | int | `8080` |  |
| replicaCount | int | `1` |  |
| resources.limits.cpu | string | `"100m"` |  |
| resources.limits.memory | string | `"128Mi"` |  |
| resources.requests.cpu | string | `"100m"` |  |
| resources.requests.memory | string | `"128Mi"` |  |
| securityContext | object | `{}` |  |
| service.port | int | `8080` |  |
| service.type | string | `"ClusterIP"` |  |
| serviceAccount.annotations | object | `{}` |  |
| serviceAccount.automount | bool | `true` |  |
| serviceAccount.create | bool | `true` |  |
| serviceAccount.name | string | `""` |  |
| tolerations | list | `[]` |  |
| volumeMounts[0].mountPath | string | `"/usr/src/app/config.yaml"` |  |
| volumeMounts[0].name | string | `"celery-beat"` |  |
| volumeMounts[0].subPath | string | `"config.yaml"` |  |
| volumes[0].configMap.items[0].key | string | `"config.yaml"` |  |
| volumes[0].configMap.items[0].path | string | `"config.yaml"` |  |
| volumes[0].configMap.name | string | `"celery-beat-configmap"` |  |
| volumes[0].name | string | `"celery-beat"` |  |

----------------------------------------------
Autogenerated from chart metadata using [helm-docs v1.13.1](https://github.com/norwoodj/helm-docs/releases/v1.13.1)
+8 −0
Original line number Original line Diff line number Diff line
1. Get the application URL by running these commands:
{{- if .Values.ingress.enabled }}
{{- range $host := .Values.ingress.hosts }}
  {{- range .paths }}
  http{{ if $.Values.ingress.tls }}s{{ end }}://{{ $host.host }}{{ .path }}
  {{- end }}
{{- end }}
{{- end }}
Loading