Merge branch 'master' into jstirnaman/fix-vale
commit
129fee12b8
|
@ -315,6 +315,11 @@ spec:
|
|||
|
||||
### Set up cluster ingress
|
||||
|
||||
{{% note %}}
|
||||
InfluxDB Clustered components use gRPC/HTTP2 protocols. If using an external load balancer,
|
||||
you may need to explicitly enable these protocols on your load balancers.
|
||||
{{% /note %}}
|
||||
|
||||
[Kubernetes ingress](https://kubernetes.io/docs/concepts/services-networking/ingress/) routes HTTP/S requests to services within the cluster and requires deploying an [ingress controller](https://kubernetes.io/docs/concepts/services-networking/ingress-controllers/).
|
||||
|
||||
You can provide your own ingress or you can install [Nginx Ingress Controller](https://github.com/kubernetes/ingress-nginx) to use the InfluxDB-defined ingress.
|
||||
|
|
|
@ -35,7 +35,7 @@ We **strongly** recommend that you enable object versioning in your object store
|
|||
|
||||
## Set up a Kubernetes cluster
|
||||
|
||||
1. Deploy a Kubernetes cluster. You must Kubernetes v1.25 or higher.
|
||||
1. Deploy a Kubernetes cluster. Kubernetes v1.25 or later is required.
|
||||
2. Create two namespaces--`influxdb` and `kubit`.
|
||||
3. Install an [ingress controller](https://kubernetes.io/docs/concepts/services-networking/ingress-controllers/) in the cluster and a mechanism to obtain a
|
||||
valid TLS certificate (for example: [cert-manager](https://cert-manager.io/)
|
||||
|
|
|
@ -67,7 +67,7 @@ InfluxDB {{< current-version >}} does not support deleting data **by field**.
|
|||
influx delete \
|
||||
--bucket example-bucket \
|
||||
--start 1970-01-01T00:00:00Z \
|
||||
--stop $(date --utc +"%Y-%m-%dT%H:%M:%SZ") \
|
||||
--stop $(date -u +"%Y-%m-%dT%H:%M:%SZ") \
|
||||
--predicate '_measurement="example-measurement"'
|
||||
```
|
||||
|
||||
|
@ -76,7 +76,7 @@ influx delete \
|
|||
influx delete \
|
||||
--bucket example-bucket \
|
||||
--start 1970-01-01T00:00:00Z \
|
||||
--stop $(date --utc +"%Y-%m-%dT%H:%M:%SZ") \
|
||||
--stop $(date -u +"%Y-%m-%dT%H:%M:%SZ") \
|
||||
--predicate '_measurement="example-measurement" AND host="old-host"'
|
||||
```
|
||||
|
||||
|
|
|
@ -86,7 +86,7 @@ deletes all data in the specified bucket with timestamps between the specified `
|
|||
```sh
|
||||
influx delete --bucket example-bucket \
|
||||
--start '1970-01-01T00:00:00Z' \
|
||||
--stop $(date --utc +"%Y-%m-%dT%H:%M:%SZ") \
|
||||
--stop $(date -u +"%Y-%m-%dT%H:%M:%SZ") \
|
||||
--predicate '_measurement="example-measurement" AND exampleTag="exampleTagValue"'
|
||||
```
|
||||
|
||||
|
|
Loading…
Reference in New Issue