Skip to content

Commit

Permalink
chore(greptimedb-cluster): add port and path to the probe (#176)
Browse files Browse the repository at this point in the history
  • Loading branch information
daviderli614 authored Oct 21, 2024
1 parent be9ca15 commit 4ae46a0
Show file tree
Hide file tree
Showing 3 changed files with 53 additions and 3 deletions.
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

0 comments on commit 4ae46a0

Please sign in to comment.