You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
uses: actions/checkout@v4# zizmor: ignore[artipacked] without this ignore comment, zizmor would complain that persist-credentials is not explicitly set to false. We need it set to true (default) to be able to push the release tags later on in this workflow
126
144
with:
127
145
fetch-depth: 0
128
146
path: source
129
-
persist-credentials: false
130
147
131
148
- name: Configure Git
132
149
run: |
@@ -136,13 +153,12 @@ jobs:
136
153
137
154
- name: Checkout helm-charts
138
155
# The cr tool only works if the target repository is already checked out
139
-
uses: actions/checkout@v4
156
+
uses: actions/checkout@v4# zizmor: ignore[artipacked] without this ignore comment, zizmor would complain that persist-credentials is not explicitly set to false. We need it set to true (default) to be able to push the release tags later on in this workflow
|`schedulerName`| Alternate scheduler name |`nil`|
134
135
|`env`| Extra environment variables passed to pods |`{}`|
135
136
|`envValueFrom`| Environment variables from alternate sources. See the API docs on [EnvVarSource](https://kubernetes.io/docs/reference/generated/kubernetes-api/v1.17/#envvarsource-v1-core) for format details. Can be templated |`{}`|
@@ -150,6 +151,7 @@ need to instead set `global.imageRegistry`.
150
151
|`alerting`| Configure grafana alerting (passed through tpl) |`{}`|
| gateway.ingress.enabled | bool | `false` | Specifies whether an ingress for the gateway should be created |
206
206
| gateway.ingress.hosts | list | `[{"host":"gateway.loki.example.com","paths":[{"path":"/"}]}]` | Hosts configuration for the gateway ingress |
207
207
| gateway.ingress.ingressClassName | string | `""` | Ingress Class Name. MAY be required for Kubernetes versions >= 1.18 For example: `ingressClassName: nginx`|
208
+
| gateway.ingress.labels | object | `{}` | Custom labels for the gateway ingress |
208
209
| gateway.ingress.tls | list | `[]` | TLS configuration for the gateway ingress |
| ingester.replicas | int | `1` | Number of replicas for the ingester |
325
326
| ingester.resources | object | `{}` | Resource requests and limits for the ingester |
326
327
| ingester.serviceLabels | object | `{}` | Labels for ingester service |
328
+
| ingester.statefulStrategy | object | `{"rollingUpdate":{"partition":0}}` | updateStrategy of the ingester statefulset. |
327
329
| ingester.terminationGracePeriodSeconds | int | `300` | Grace period to allow the ingester to shutdown before it is killed. Especially for the ingester, this must be increased. It must be long enough so ingesters can be gracefully shutdown flushing/transferring all data and to successfully leave the member ring on shutdown. |
328
330
| ingester.tolerations | list | `[]` | Tolerations for ingester pods |
329
331
| ingester.topologySpreadConstraints | string | Defaults to allow skew no more then 1 node per AZ | topologySpread for ingester pods. Passed through `tpl` and, thus, to be configured as string |
0 commit comments