Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

chore(greptimedb-cluster): add port and path to the probe #176

Merged
merged 1 commit into from
Oct 21, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion charts/greptimedb-cluster/Chart.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ apiVersion: v2
name: greptimedb-cluster
description: A Helm chart for deploying GreptimeDB cluster in Kubernetes.
type: application
version: 0.2.21
version: 0.2.22
appVersion: 0.9.5
home: https://github.com/GreptimeTeam/greptimedb
sources:
Expand Down
2 changes: 1 addition & 1 deletion charts/greptimedb-cluster/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@

A Helm chart for deploying GreptimeDB cluster in Kubernetes.

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

## Source Code

Expand Down
52 changes: 51 additions & 1 deletion charts/greptimedb-cluster/values.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -43,7 +43,12 @@ base:

# -- The config for readiness probe of the main container
readinessProbe: {}
# # -- The initial delay seconds for the readiness probe.
# httpGet:
# # -- Path to access on the HTTP server
# path: /health
# # -- Name or number of the port to access on the container
# port: 4000
# # -- The initial delay seconds for the readiness probe
# initialDelaySeconds: 5
# # -- The timeout seconds for the readiness probe
# timeoutSeconds: 1
Expand All @@ -56,6 +61,11 @@ base:

# -- The config for liveness probe of the main container
livenessProbe: {}
# httpGet:
# # -- Path to access on the HTTP server
# path: /health
# # -- Name or number of the port to access on the container
# port: 4000
# # -- The initial delay seconds for the readiness probe.
# initialDelaySeconds: 5
# # -- The timeout seconds for the readiness probe
Expand Down Expand Up @@ -123,6 +133,11 @@ frontend:

# -- The config for readiness probe of the main container
readinessProbe: {}
# httpGet:
# # -- Path to access on the HTTP server
# path: /health
# # -- Name or number of the port to access on the container
# port: 4000
# # -- The initial delay seconds for the readiness probe.
# initialDelaySeconds: 5
# # -- The timeout seconds for the readiness probe
Expand All @@ -136,6 +151,11 @@ frontend:

# -- The config for liveness probe of the main container
livenessProbe: {}
# httpGet:
# # -- Path to access on the HTTP server
# path: /health
# # -- Name or number of the port to access on the container
# port: 4000
# # -- The initial delay seconds for the readiness probe.
# initialDelaySeconds: 5
# # -- The timeout seconds for the readiness probe
Expand Down Expand Up @@ -234,6 +254,11 @@ meta:

# -- The config for readiness probe of the main container
readinessProbe: {}
# httpGet:
# # -- Path to access on the HTTP server
# path: /health
# # -- Name or number of the port to access on the container
# port: 4000
# # -- The initial delay seconds for the readiness probe.
# initialDelaySeconds: 5
# # -- The timeout seconds for the readiness probe
Expand All @@ -247,6 +272,11 @@ meta:

# -- The config for liveness probe of the main container
livenessProbe: {}
# httpGet:
# # -- Path to access on the HTTP server
# path: /health
# # -- Name or number of the port to access on the container
# port: 4000
# # -- The initial delay seconds for the readiness probe.
# initialDelaySeconds: 5
# # -- The timeout seconds for the readiness probe
Expand Down Expand Up @@ -347,6 +377,11 @@ datanode:

# -- The config for readiness probe of the main container
readinessProbe: {}
# httpGet:
# # -- Path to access on the HTTP server
# path: /health
# # -- Name or number of the port to access on the container
# port: 4000
# # -- The initial delay seconds for the readiness probe.
# initialDelaySeconds: 5
# # -- The timeout seconds for the readiness probe
Expand All @@ -360,6 +395,11 @@ datanode:

# -- The config for liveness probe of the main container
livenessProbe: {}
# httpGet:
# # -- Path to access on the HTTP server
# path: /health
# # -- Name or number of the port to access on the container
# port: 4000
# # -- The initial delay seconds for the readiness probe.
# initialDelaySeconds: 5
# # -- The timeout seconds for the readiness probe
Expand Down Expand Up @@ -487,6 +527,11 @@ flownode:

# -- The config for readiness probe of the main container
readinessProbe: {}
# httpGet:
# # -- Path to access on the HTTP server
# path: /health
# # -- Name or number of the port to access on the container
# port: 4000
# # -- The initial delay seconds for the readiness probe.
# initialDelaySeconds: 5
# # -- The timeout seconds for the readiness probe
Expand All @@ -500,6 +545,11 @@ flownode:

# -- The config for liveness probe of the main container
livenessProbe: {}
# httpGet:
# # -- Path to access on the HTTP server
# path: /health
# # -- Name or number of the port to access on the container
# port: 4000
# # -- The initial delay seconds for the readiness probe.
# initialDelaySeconds: 5
# # -- The timeout seconds for the readiness probe
Expand Down
Loading