Commit 78705964 authored by Pelayo Torres's avatar Pelayo Torres
Browse files

Merge branch 'staging' into OCF64-rel17-to-rel18

parents 79b8a1b2 2e60f82c
Loading
Loading
Loading
Loading

helm/DELETE.txt

deleted100644 → 0
+0 −1
Original line number Diff line number Diff line
delete me
+42 −294

File changed.

Preview size limit exceeded, changes collapsed.

+1 −1
Original line number Diff line number Diff line
apiVersion: v2
name: fluentbit
description: A Helm chart for Kubernetes
description: A Helm chart for Kubernetes of fluentbit OCF

# A chart can be either an 'application' or a 'library' chart.
#
+60 −0
Original line number Diff line number Diff line
# fluentbit

![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 fluentbit OCF

## Values

| Key | Type | Default | Description |
|-----|------|---------|-------------|
| affinity | object | `{}` |  |
| autoscaling.enabled | bool | `false` |  |
| autoscaling.maxReplicas | int | `100` |  |
| autoscaling.minReplicas | int | `1` |  |
| autoscaling.targetCPUUtilizationPercentage | int | `80` |  |
| enabled | bool | `false` |  |
| env.lokiUrl | string | `"http://loki:3100/loki/api/v1/push"` |  |
| fullnameOverride | string | `""` |  |
| image.pullPolicy | string | `"Always"` |  |
| image.repository | string | `"grafana/fluent-bit-plugin-loki"` |  |
| image.tag | string | `"latest"` |  |
| 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.initialDelaySeconds | int | `20` |  |
| livenessProbe.periodSeconds | int | `5` |  |
| livenessProbe.tcpSocket.port | int | `24224` |  |
| nameOverride | string | `""` |  |
| nodeSelector | object | `{}` |  |
| podAnnotations | object | `{}` |  |
| podLabels | object | `{}` |  |
| podSecurityContext | object | `{}` |  |
| readinessProbe.initialDelaySeconds | int | `20` |  |
| readinessProbe.periodSeconds | int | `5` |  |
| readinessProbe.tcpSocket.port | int | `24224` |  |
| replicaCount | int | `1` |  |
| resources | object | `{}` |  |
| securityContext | object | `{}` |  |
| service.port | int | `24224` |  |
| service.type | string | `"ClusterIP"` |  |
| serviceAccount.annotations | object | `{}` |  |
| serviceAccount.automount | bool | `true` |  |
| serviceAccount.create | bool | `true` |  |
| serviceAccount.name | string | `""` |  |
| tolerations | list | `[]` |  |
| volumeMounts[0].mountPath | string | `"/fluent-bit/etc/fluent-bit.conf"` |  |
| volumeMounts[0].name | string | `"fluent-bit-conf"` |  |
| volumeMounts[0].subPath | string | `"fluent-bit.conf"` |  |
| volumes[0].configMap.items[0].key | string | `"fluent-bit.conf"` |  |
| volumes[0].configMap.items[0].path | string | `"fluent-bit.conf"` |  |
| volumes[0].configMap.name | string | `"fluent-bit-configmap"` |  |
| volumes[0].name | string | `"fluent-bit-conf"` |  |

----------------------------------------------
Autogenerated from chart metadata using [helm-docs v1.13.1](https://github.com/norwoodj/helm-docs/releases/v1.13.1)
+7 −7
Original line number Diff line number Diff line
@@ -64,17 +64,17 @@ ingress:
  #    hosts:
  #      - chart-example.local

resources: {}
resources:
  # We usually recommend not to specify default resources and to leave this as a conscious
  # choice for the user. This also increases chances charts run on environments with little
  # resources, such as Minikube. If you do want to specify resources, uncomment the following
  # lines, adjust them as necessary, and remove the curly braces after 'resources:'.
  # limits:
  #   cpu: 100m
  #   memory: 128Mi
  # requests:
  #   cpu: 100m
  #   memory: 128Mi
  limits:
    cpu: 200m
    memory: 256Mi
  requests:
    cpu: 1m
    memory: 1Mi

livenessProbe:
  tcpSocket:
Loading