Skip to content

Commit

Permalink
Merge pull request #32 from frain-dev/subomi/feat/v24.11
Browse files Browse the repository at this point in the history
feat: added new config for v24.11
  • Loading branch information
subomi authored Nov 16, 2024
2 parents 808d86f + 9fc1712 commit 4239b73
Show file tree
Hide file tree
Showing 6 changed files with 33 additions and 6 deletions.
4 changes: 2 additions & 2 deletions Chart.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -2,8 +2,8 @@ apiVersion: v2
name: convoy
description: Open Source Webhooks Gateway
type: application
version: "3.1.0"
appVersion: "24.8.2"
version: "3.2.0"
appVersion: "24.11.1"
keywords:
- Webhooks
- Kubernetes
Expand Down
10 changes: 7 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
# convoy

![Version: 3.1.0](https://img.shields.io/badge/Version-3.1.0-informational?style=flat-square) ![Type: application](https://img.shields.io/badge/Type-application-informational?style=flat-square) ![AppVersion: 24.8.2](https://img.shields.io/badge/AppVersion-24.8.2-informational?style=flat-square)
![Version: 3.2.0](https://img.shields.io/badge/Version-3.2.0-informational?style=flat-square) ![Type: application](https://img.shields.io/badge/Type-application-informational?style=flat-square) ![AppVersion: 24.11.1](https://img.shields.io/badge/AppVersion-24.11.1-informational?style=flat-square)

Open Source Webhooks Gateway

Expand Down Expand Up @@ -30,6 +30,10 @@ Open Source Webhooks Gateway
| agent.autoscaling.targetMemoryUtilizationPercentage | int | `80` | |
| agent.env.analytics_enabled | bool | `true` | |
| agent.env.consumer_pool_size | int | `100` | |
| agent.env.dispatcher.allow_list[0] | string | `"0.0.0.0/0"` | |
| agent.env.dispatcher.deny_list[0] | string | `"127.0.0.1/8"` | |
| agent.env.dispatcher.deny_list[1] | string | `"169.254.169.254/32"` | |
| agent.env.dispatcher.insecure_skip_verify | bool | `false` | |
| agent.env.enable_feature_flag | list | `[]` | |
| agent.env.enable_profiling | bool | `false` | |
| agent.env.environment | string | `"oss"` | |
Expand Down Expand Up @@ -161,7 +165,7 @@ Open Source Webhooks Gateway
| server.image.pullPolicy | string | `"IfNotPresent"` | Pull policy for the server image |
| server.image.repository | string | `"getconvoy/convoy"` | Repository to be used by the server. The latest tag is used by default |
| server.ingress.annotations | object | `{}` | |
| server.ingress.enabled | bool | `false` | Enable ingress for the server |
| server.ingress.enabled | bool | `true` | Enable ingress for the server |
| server.ingress.hosts[0].host | string | `"test.com"` | |
| server.ingress.hosts[0].http.paths[0].path | string | `"/"` | |
| server.ingress.hosts[0].http.paths[0].pathType | string | `"Prefix"` | |
Expand All @@ -173,4 +177,4 @@ Open Source Webhooks Gateway
| server.service.type | string | `"ClusterIP"` | Type of service for the server |

----------------------------------------------
Autogenerated from chart metadata using [helm-docs v1.11.0](https://github.com/norwoodj/helm-docs/releases/v1.11.0)
Autogenerated from chart metadata using [helm-docs v1.14.2](https://github.com/norwoodj/helm-docs/releases/v1.14.2)
7 changes: 7 additions & 0 deletions charts/agent/templates/deployment.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -282,6 +282,13 @@ spec:
value: {{ .Values.env.worker_execution_mode | quote }}
- name: CONVOY_MAX_RETRY_SECONDS
value: {{ .Values.env.max_retry_seconds | quote }}
- name: CONVOY_DISPATCHER_INSECURE_SKIP_VERIFY
value: {{ .Values.env.dispatcher.insecure_skip_verify | quote }}
- name: CONVOY_DISPATCHER_ALLOW_LIST
value: {{ .Values.env.dispatcher.allow_list | quote }}
- name: CONVOY_DISPATCHER_DENY_LIST
value: {{ .Values.env.dispatcher.deny_list | quote }}

livenessProbe:
httpGet:
path: /health
Expand Down
8 changes: 8 additions & 0 deletions charts/agent/values.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -79,7 +79,15 @@ env:
worker_execution_mode: default
max_retry_seconds: 7200
license_key: ""
dispatcher:
insecure_skip_verify: false
allow_list: ["0.0.0.0/0"]
deny_list: ["127.0.0.1/8", "169.254.169.254/32"]

# These values serve as defaults for standalone deployment
# When deployed as a subchart, these can be overridden by parent values:
# - global.convoy.image
# - global.convoy.tag
image:
repository: getconvoy/convoy
pullPolicy: Always
Expand Down
4 changes: 4 additions & 0 deletions charts/server/values.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -77,6 +77,10 @@ env:
max_retry_seconds: 7200
license_key: ""

# These values serve as defaults for standalone deployment
# When deployed as a subchart, these can be overridden by parent values:
# - global.convoy.image
# - global.convoy.tag
image:
repository: getconvoy/convoy
pullPolicy: Always
Expand Down
6 changes: 5 additions & 1 deletion values.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -189,6 +189,10 @@ agent:
worker_execution_mode: default
max_retry_seconds: 7200
license_key: *licenseKey
dispatcher:
insecure_skip_verify: false
allow_list: ["0.0.0.0/0"]
deny_list: ["127.0.0.1/8", "169.254.169.254/32"]
app:
replicaCount: 1
resources: {}
Expand Down Expand Up @@ -303,7 +307,7 @@ server:

ingress:
# -- Enable ingress for the server
enabled: false
enabled: true
annotations: {}
ingressClassName: ""
tls:
Expand Down

0 comments on commit 4239b73

Please sign in to comment.