Skip to content

Commit 3817079

Browse files
feat(internal-gateway): remove workflow logs
1 parent edfcf8f commit 3817079

File tree

7 files changed

+65
-84
lines changed

7 files changed

+65
-84
lines changed

charts/internal-gateway/Chart.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ apiVersion: v2
22
appVersion: v0.0.0
33
description: A Helm chart for Codefresh Internal Gateway
44
name: internal-gateway
5-
version: 0.10.2
5+
version: 0.10.3
66
home: https://github.com/codefresh-io/helm-charts
77
keywords:
88
- codefresh

charts/internal-gateway/README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -53,8 +53,8 @@ A Helm chart for Codefresh Internal Gateway
5353
| nginx.config.workerConnections | string | `"16384"` | Sets the maximum number of simultaneous connections that can be opened by a worker process. |
5454
| nginx.config.workerProcesses | string | `"8"` | Defines the number of worker processes. |
5555
| nginx.config.workerRlimitNofile | string | `"1047552"` | Changes the limit on the largest size of a core file (RLIMIT_CORE) for worker processes. Used to increase the limit without restarting the main process. |
56-
| nginx.extraConfigsPatterns[0] | string | `"files/conf.d/**"` | |
57-
| nginx.scriptFilesPatterns | list | `["files/njs/**"]` | Path to NJS scripts |
56+
| nginx.extraConfigsPatterns | list | `[]` | |
57+
| nginx.scriptFilesPatterns | list | `[]` | Path to NJS scripts |
5858
| pdb | object | See below | PDB parameters |
5959
| podAnnotations | object | See below | Pod annotations |
6060
| podSecurityContext | object | See below | Pod Security Context parameters |

charts/internal-gateway/files/conf.d/s3-gateway.conf

Lines changed: 0 additions & 41 deletions
This file was deleted.

charts/internal-gateway/files/njs/auth.js

Lines changed: 0 additions & 28 deletions
This file was deleted.

charts/internal-gateway/templates/_default_values.tpl

Lines changed: 0 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -58,8 +58,4 @@ codefresh:
5858
jira-addon:
5959
svc: '{{ .Release.Name }}-{{ index .Values.codefresh "jira-addon-svc" }}.{{ .Release.Namespace }}.svc.{{ .Values.global.clusterDomain }}'
6060
port: {{ index .Values.codefresh "jira-addon-port" }}
61-
workflow-logs-s3-proxy:
62-
domain: {{ index .Values.codefresh "workflow-logs-s3-proxy-domain" }}
63-
svc: '{{ .Release.Name }}-{{ index .Values.codefresh "workflow-logs-s3-proxy-svc" }}.{{ .Release.Namespace }}.svc.{{ .Values.global.clusterDomain }}'
64-
port: {{ index .Values.codefresh "workflow-logs-s3-proxy-port" }}
6561
{{- end }}

charts/internal-gateway/values.yaml

Lines changed: 2 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -63,10 +63,6 @@ codefresh:
6363
jira-addon-svc: cf-jira-addon
6464
jira-addon-port: 9000
6565

66-
workflow-logs-s3-proxy-domain: logs.codefresh.io
67-
workflow-logs-s3-proxy-svc: workflow-logs-s3-proxy
68-
workflow-logs-s3-proxy-port: 80
69-
7066
# -- Override defaults here!
7167
serviceEndpoints:
7268
cfapi-auth: {}
@@ -158,10 +154,8 @@ nginx:
158154
# @default -- See below
159155
file: ""
160156
# -- Path to NJS scripts
161-
scriptFilesPatterns:
162-
- files/njs/**
163-
extraConfigsPatterns:
164-
- files/conf.d/**
157+
scriptFilesPatterns: []
158+
extraConfigsPatterns: []
165159

166160
# -- Misc signadot configuration
167161
signadot: false

charts/ngrok-agent/README.md

Lines changed: 60 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,60 @@
1+
# ngrok-agent
2+
3+
![Version: 0.1.0](https://img.shields.io/badge/Version-0.1.0-informational?style=flat-square) ![Type: application](https://img.shields.io/badge/Type-application-informational?style=flat-square)
4+
5+
A Helm chart for Kubernetes
6+
7+
## Maintainers
8+
9+
| Name | Email | Url |
10+
| ---- | ------ | --- |
11+
| codefresh | | <https://codefresh-io.github.io/> |
12+
13+
## Requirements
14+
15+
| Repository | Name | Version |
16+
|------------|------|---------|
17+
| oci://quay.io/codefresh/charts | cf-common | 0.20.1 |
18+
19+
## Values
20+
21+
| Key | Type | Default | Description |
22+
|-----|------|---------|-------------|
23+
| affinity | object | `{}` | |
24+
| codefresh.internal-gateway-port | int | `80` | |
25+
| codefresh.internal-gateway-svc | string | `"internal-gateway"` | |
26+
| codefresh.ngrok-domain | string | `""` | |
27+
| configMaps.config.data."ngrok.yml" | string | `"{{ include (printf \"cf-common-%s.tplrender\" (index .Subcharts \"cf-common\").Chart.Version) ( dict \"Values\" .Values.ngrok.config \"context\" .) | nindent 2 }}\n"` | |
28+
| configMaps.config.enabled | bool | `true` | |
29+
| container.args[0] | string | `"start"` | |
30+
| container.args[1] | string | `"--all"` | |
31+
| container.args[2] | string | `"--config=/etc/ngrok.yml"` | |
32+
| container.args[3] | string | `"--log=stdout"` | |
33+
| container.args[4] | string | `"--log-format=json"` | |
34+
| container.args[5] | string | `"--log-level=debug"` | |
35+
| container.command[0] | string | `"ngrok"` | |
36+
| container.env.NGROK_AUTHTOKEN | string | `""` | |
37+
| container.image.pullPolicy | string | `"IfNotPresent"` | |
38+
| container.image.registry | string | `"docker.io"` | |
39+
| container.image.repository | string | `"ngrok/ngrok"` | |
40+
| container.image.tag | string | `"3-alpine"` | |
41+
| container.volumeMounts.config.path[0].mountPath | string | `"/etc/ngrok.yml"` | |
42+
| container.volumeMounts.config.path[0].subPath | string | `"ngrok.yml"` | |
43+
| controller.deployment.strategy | string | `"Recreate"` | |
44+
| controller.enabled | bool | `true` | |
45+
| controller.replicas | int | `1` | |
46+
| controller.type | string | `"deployment"` | |
47+
| global | object | `{}` | |
48+
| hpa | object | `{}` | |
49+
| keda.auth | object | `{}` | |
50+
| keda.spec | object | `{}` | |
51+
| libraryMode | bool | `true` | |
52+
| ngrok.config | string | `"version: 3\ntunnels:\n ingresshost:\n proto: http\n addr: {{ printf \"%s:%v\" (index .Values.codefresh \"internal-gateway-svc\") (index .Values.codefresh \"internal-gateway-port\") }}\n hostname: {{ index .Values.codefresh \"ngrok-domain\" }}\n"` | |
53+
| nodeSelector | object | `{}` | |
54+
| pdb | object | `{}` | |
55+
| tolerations | list | `[]` | |
56+
| volumes.config.enabled | bool | `true` | |
57+
| volumes.config.type | string | `"configMap"` | |
58+
59+
----------------------------------------------
60+
Autogenerated from chart metadata using [helm-docs v1.9.1](https://github.com/norwoodj/helm-docs/releases/v1.9.1)

0 commit comments

Comments
 (0)