diff --git a/charts/tempo/README.md b/charts/tempo/README.md index f8913e0363..ff5c75772e 100644 --- a/charts/tempo/README.md +++ b/charts/tempo/README.md @@ -38,12 +38,12 @@ Grafana Tempo Single Binary Mode | replicas | int | `1` | Define the amount of instances | | securityContext | object | `{"fsGroup":10001,"runAsGroup":10001,"runAsNonRoot":true,"runAsUser":10001}` | securityContext for container | | service.annotations | object | `{}` | | +| service.clusterIP | string | `""` | | | service.labels | object | `{}` | | +| service.loadBalancerIP | string | `nil` | IP address, in case of 'type: LoadBalancer' | +| service.protocol | string | `"TCP"` | If service type is LoadBalancer, the exposed protocol can either be 'UDP', 'TCP' or 'UDP,TCP' | | service.targetPort | string | `""` | | | service.type | string | `"ClusterIP"` | | -| service.clusterIP | string | `""` | | -| service.loadBalancerIP | string | `""` | | -| service.protocol | string | `"TCP"` | If service type is LoadBalancer, the exposed protocol can be "UDP", "TCP" or "UDP,TCP" | | serviceAccount.annotations | object | `{}` | Annotations for the service account | | serviceAccount.automountServiceAccountToken | bool | `true` | | | serviceAccount.create | bool | `true` | Specifies whether a ServiceAccount should be created | @@ -151,4 +151,4 @@ and [1.5 -> 2.0 upgrade guide](https://grafana.com/docs/tempo/latest/setup/upgra Upgrading from pre 0.7.0 will, by default, move your trace storage from `/tmp/tempo/traces` to `/var/tempo/traces`. This will cause Tempo to lose trace history. If you would like to retain history just copy the contents from the -old folder to the new. +old folder to the new. \ No newline at end of file diff --git a/charts/tempo/values.yaml b/charts/tempo/values.yaml index c828b24f2b..41724a7565 100644 --- a/charts/tempo/values.yaml +++ b/charts/tempo/values.yaml @@ -257,11 +257,11 @@ serviceAccount: service: type: ClusterIP - # type: LoadBalancer - # clusterIP: "" - # loadBalancerIP: "" - # -- If service type is LoadBalancer, the exposed protocol can either be UDP or TCP - # protocol: "TCP" + clusterIP: "" + # -- (string) IP address, in case of 'type: LoadBalancer' + loadBalancerIP: + # -- If service type is LoadBalancer, the exposed protocol can either be "UDP", "TCP" or "UDP,TCP" + protocol: "TCP" annotations: {} labels: {}