Skip to content

Commit

Permalink
[CI] Publish inframold charts (#781)
Browse files Browse the repository at this point in the history
* [CI] Update inframold charts

* Update README.md with readme-generator-for-helm

Signed-off-by: innoavator <[email protected]>

* [CI] Update charts artifacts manifest files

Signed-off-by: innoavator <[email protected]>

---------

Signed-off-by: innoavator <[email protected]>
Co-authored-by: dunefro <[email protected]>
Co-authored-by: innoavator <[email protected]>
  • Loading branch information
3 people authored Nov 11, 2024
1 parent e60507c commit a610350
Show file tree
Hide file tree
Showing 20 changed files with 180 additions and 20 deletions.
2 changes: 1 addition & 1 deletion charts/tfy-k8s-aws-eks-inframold/Chart.yaml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
apiVersion: v2
name: tfy-k8s-aws-eks-inframold
version: 0.1.7
version: 0.1.8
description: "Inframold, the superchart that configure your cluster on aws for truefoundry."
maintainers:
- name: truefoundry
14 changes: 11 additions & 3 deletions charts/tfy-k8s-aws-eks-inframold/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -88,9 +88,17 @@ Inframold, the superchart that configure your cluster on aws for truefoundry.

### truefoundryBootstrap parameters

| Name | Description | Value |
| ------------------------------------------ | ------------------------------------------------------------------------- | ------- |
| `truefoundry.truefoundryBootstrap.enabled` | Flag to enable bootstrap job to prep cluster for truefoundry installation | `false` |
| Name | Description | Value |
| ------------------------------------------ | ------------------------------------------------------------------------- | ------ |
| `truefoundry.truefoundryBootstrap.enabled` | Flag to enable bootstrap job to prep cluster for truefoundry installation | `true` |

### Truefoundry virtual service parameters

| Name | Description | Value |
| ------------------------------------- | -------------------------------------------------- | ------- |
| `truefoundry.virtualservice.enabled` | Flag to enable virtualservice | `false` |
| `truefoundry.virtualservice.hosts` | Hosts for truefoundry virtualservice | `[]` |
| `truefoundry.virtualservice.gateways` | Istio gateways to be configured for virtualservice | `[]` |

### database. Can be left empty if using the dev mode parameters

Expand Down
14 changes: 14 additions & 0 deletions charts/tfy-k8s-aws-eks-inframold/templates/truefoundry.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -41,6 +41,20 @@ spec:
enabled: {{ .Values.truefoundry.devMode.enabled }}
truefoundryBootstrap:
enabled: {{ .Values.truefoundry.truefoundryBootstrap.enabled }}
{{- if .Values.truefoundry.virtualservice.enabled }}
truefoundryFrontendApp:
istio:
virtualservice:
enabled: true
{{- range $v := .Values.truefoundry.virtualservice.hosts }}
hosts:
- {{ $v | quote }}
{{- end }}
{{- range $v := .Values.truefoundry.virtualservice.gateways }}
gateways:
- {{ $v | quote }}
{{- end }}
{{- end }}
nats:
{{- with .Values.tolerations }}
tolerations:
Expand Down
10 changes: 10 additions & 0 deletions charts/tfy-k8s-aws-eks-inframold/values.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -170,7 +170,17 @@ truefoundry:
## @section truefoundryBootstrap parameters
## @param truefoundry.truefoundryBootstrap.enabled Flag to enable bootstrap job to prep cluster for truefoundry installation
truefoundryBootstrap:
enabled: true

## @section Truefoundry virtual service parameters
virtualservice:
## @param truefoundry.virtualservice.enabled Flag to enable virtualservice
enabled: false
## @param truefoundry.virtualservice.hosts Hosts for truefoundry virtualservice
hosts: []
## @param truefoundry.virtualservice.gateways Istio gateways to be configured for virtualservice
gateways: []

## @section database. Can be left empty if using the dev mode parameters
database:
## @param truefoundry.database.host Hostname of the database
Expand Down
2 changes: 1 addition & 1 deletion charts/tfy-k8s-azure-aks-inframold/Chart.yaml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
apiVersion: v2
name: tfy-k8s-azure-aks-inframold
version: 0.1.7
version: 0.1.8
description: "Inframold, the superchart that configure your cluster on azure for truefoundry."
maintainers:
- name: truefoundry
14 changes: 11 additions & 3 deletions charts/tfy-k8s-azure-aks-inframold/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -67,9 +67,17 @@ Inframold, the superchart that configure your cluster on azure for truefoundry.

### truefoundryBootstrap parameters

| Name | Description | Value |
| ------------------------------------------ | ------------------------------------------------------------------------- | ------- |
| `truefoundry.truefoundryBootstrap.enabled` | Flag to enable bootstrap job to prep cluster for truefoundry installation | `false` |
| Name | Description | Value |
| ------------------------------------------ | ------------------------------------------------------------------------- | ------ |
| `truefoundry.truefoundryBootstrap.enabled` | Flag to enable bootstrap job to prep cluster for truefoundry installation | `true` |

### Truefoundry virtual service parameters

| Name | Description | Value |
| ------------------------------------- | -------------------------------------------------- | ------- |
| `truefoundry.virtualservice.enabled` | Flag to enable virtualservice | `false` |
| `truefoundry.virtualservice.hosts` | Hosts for truefoundry virtualservice | `[]` |
| `truefoundry.virtualservice.gateways` | Istio gateways to be configured for virtualservice | `[]` |

### database. Can be left empty if using the dev mode parameters

Expand Down
14 changes: 14 additions & 0 deletions charts/tfy-k8s-azure-aks-inframold/templates/truefoundry.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -41,6 +41,20 @@ spec:
enabled: {{ .Values.truefoundry.devMode.enabled }}
truefoundryBootstrap:
enabled: {{ .Values.truefoundry.truefoundryBootstrap.enabled }}
{{- if .Values.truefoundry.virtualservice.enabled }}
truefoundryFrontendApp:
istio:
virtualservice:
enabled: true
{{- range $v := .Values.truefoundry.virtualservice.hosts }}
hosts:
- {{ $v | quote }}
{{- end }}
{{- range $v := .Values.truefoundry.virtualservice.gateways }}
gateways:
- {{ $v | quote }}
{{- end }}
{{- end }}
nats:
{{- with .Values.tolerations }}
tolerations:
Expand Down
10 changes: 10 additions & 0 deletions charts/tfy-k8s-azure-aks-inframold/values.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -118,7 +118,17 @@ truefoundry:
## @section truefoundryBootstrap parameters
## @param truefoundry.truefoundryBootstrap.enabled Flag to enable bootstrap job to prep cluster for truefoundry installation
truefoundryBootstrap:
enabled: true

## @section Truefoundry virtual service parameters
virtualservice:
## @param truefoundry.virtualservice.enabled Flag to enable virtualservice
enabled: false
## @param truefoundry.virtualservice.hosts Hosts for truefoundry virtualservice
hosts: []
## @param truefoundry.virtualservice.gateways Istio gateways to be configured for virtualservice
gateways: []

## @section database. Can be left empty if using the dev mode parameters
database:
## @param truefoundry.database.host Hostname of the database
Expand Down
2 changes: 1 addition & 1 deletion charts/tfy-k8s-civo-talos-inframold/Chart.yaml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
apiVersion: v2
name: tfy-k8s-civo-talos-inframold
version: 0.1.7
version: 0.1.8
description: "Inframold, the superchart that configure your cluster on civo for truefoundry."
maintainers:
- name: truefoundry
14 changes: 11 additions & 3 deletions charts/tfy-k8s-civo-talos-inframold/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -67,9 +67,17 @@ Inframold, the superchart that configure your cluster on civo for truefoundry.

### truefoundryBootstrap parameters

| Name | Description | Value |
| ------------------------------------------ | ------------------------------------------------------------------------- | ------- |
| `truefoundry.truefoundryBootstrap.enabled` | Flag to enable bootstrap job to prep cluster for truefoundry installation | `false` |
| Name | Description | Value |
| ------------------------------------------ | ------------------------------------------------------------------------- | ------ |
| `truefoundry.truefoundryBootstrap.enabled` | Flag to enable bootstrap job to prep cluster for truefoundry installation | `true` |

### Truefoundry virtual service parameters

| Name | Description | Value |
| ------------------------------------- | -------------------------------------------------- | ------- |
| `truefoundry.virtualservice.enabled` | Flag to enable virtualservice | `false` |
| `truefoundry.virtualservice.hosts` | Hosts for truefoundry virtualservice | `[]` |
| `truefoundry.virtualservice.gateways` | Istio gateways to be configured for virtualservice | `[]` |

### database. Can be left empty if using the dev mode parameters

Expand Down
14 changes: 14 additions & 0 deletions charts/tfy-k8s-civo-talos-inframold/templates/truefoundry.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -41,6 +41,20 @@ spec:
enabled: {{ .Values.truefoundry.devMode.enabled }}
truefoundryBootstrap:
enabled: {{ .Values.truefoundry.truefoundryBootstrap.enabled }}
{{- if .Values.truefoundry.virtualservice.enabled }}
truefoundryFrontendApp:
istio:
virtualservice:
enabled: true
{{- range $v := .Values.truefoundry.virtualservice.hosts }}
hosts:
- {{ $v | quote }}
{{- end }}
{{- range $v := .Values.truefoundry.virtualservice.gateways }}
gateways:
- {{ $v | quote }}
{{- end }}
{{- end }}
nats:
{{- with .Values.tolerations }}
tolerations:
Expand Down
10 changes: 10 additions & 0 deletions charts/tfy-k8s-civo-talos-inframold/values.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -104,7 +104,17 @@ truefoundry:
## @section truefoundryBootstrap parameters
## @param truefoundry.truefoundryBootstrap.enabled Flag to enable bootstrap job to prep cluster for truefoundry installation
truefoundryBootstrap:
enabled: true

## @section Truefoundry virtual service parameters
virtualservice:
## @param truefoundry.virtualservice.enabled Flag to enable virtualservice
enabled: false
## @param truefoundry.virtualservice.hosts Hosts for truefoundry virtualservice
hosts: []
## @param truefoundry.virtualservice.gateways Istio gateways to be configured for virtualservice
gateways: []

## @section database. Can be left empty if using the dev mode parameters
database:
## @param truefoundry.database.host Hostname of the database
Expand Down
2 changes: 1 addition & 1 deletion charts/tfy-k8s-gcp-gke-standard-inframold/Chart.yaml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
apiVersion: v2
name: tfy-k8s-gcp-gke-standard-inframold
version: 0.1.7
version: 0.1.8
description: "Inframold, the superchart that configure your cluster on gcp for truefoundry."
maintainers:
- name: truefoundry
14 changes: 11 additions & 3 deletions charts/tfy-k8s-gcp-gke-standard-inframold/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -67,9 +67,17 @@ Inframold, the superchart that configure your cluster on gcp for truefoundry.

### truefoundryBootstrap parameters

| Name | Description | Value |
| ------------------------------------------ | ------------------------------------------------------------------------- | ------- |
| `truefoundry.truefoundryBootstrap.enabled` | Flag to enable bootstrap job to prep cluster for truefoundry installation | `false` |
| Name | Description | Value |
| ------------------------------------------ | ------------------------------------------------------------------------- | ------ |
| `truefoundry.truefoundryBootstrap.enabled` | Flag to enable bootstrap job to prep cluster for truefoundry installation | `true` |

### Truefoundry virtual service parameters

| Name | Description | Value |
| ------------------------------------- | -------------------------------------------------- | ------- |
| `truefoundry.virtualservice.enabled` | Flag to enable virtualservice | `false` |
| `truefoundry.virtualservice.hosts` | Hosts for truefoundry virtualservice | `[]` |
| `truefoundry.virtualservice.gateways` | Istio gateways to be configured for virtualservice | `[]` |

### database. Can be left empty if using the dev mode parameters

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -41,6 +41,20 @@ spec:
enabled: {{ .Values.truefoundry.devMode.enabled }}
truefoundryBootstrap:
enabled: {{ .Values.truefoundry.truefoundryBootstrap.enabled }}
{{- if .Values.truefoundry.virtualservice.enabled }}
truefoundryFrontendApp:
istio:
virtualservice:
enabled: true
{{- range $v := .Values.truefoundry.virtualservice.hosts }}
hosts:
- {{ $v | quote }}
{{- end }}
{{- range $v := .Values.truefoundry.virtualservice.gateways }}
gateways:
- {{ $v | quote }}
{{- end }}
{{- end }}
nats:
{{- with .Values.tolerations }}
tolerations:
Expand Down
10 changes: 10 additions & 0 deletions charts/tfy-k8s-gcp-gke-standard-inframold/values.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -118,7 +118,17 @@ truefoundry:
## @section truefoundryBootstrap parameters
## @param truefoundry.truefoundryBootstrap.enabled Flag to enable bootstrap job to prep cluster for truefoundry installation
truefoundryBootstrap:
enabled: true

## @section Truefoundry virtual service parameters
virtualservice:
## @param truefoundry.virtualservice.enabled Flag to enable virtualservice
enabled: false
## @param truefoundry.virtualservice.hosts Hosts for truefoundry virtualservice
hosts: []
## @param truefoundry.virtualservice.gateways Istio gateways to be configured for virtualservice
gateways: []

## @section database. Can be left empty if using the dev mode parameters
database:
## @param truefoundry.database.host Hostname of the database
Expand Down
2 changes: 1 addition & 1 deletion charts/tfy-k8s-generic-inframold/Chart.yaml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
apiVersion: v2
name: tfy-k8s-generic-inframold
version: 0.1.7
version: 0.1.8
description: "Inframold, the superchart that configure your cluster on generic for truefoundry."
maintainers:
- name: truefoundry
14 changes: 11 additions & 3 deletions charts/tfy-k8s-generic-inframold/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -67,9 +67,17 @@ Inframold, the superchart that configure your cluster on generic for truefoundry

### truefoundryBootstrap parameters

| Name | Description | Value |
| ------------------------------------------ | ------------------------------------------------------------------------- | ------- |
| `truefoundry.truefoundryBootstrap.enabled` | Flag to enable bootstrap job to prep cluster for truefoundry installation | `false` |
| Name | Description | Value |
| ------------------------------------------ | ------------------------------------------------------------------------- | ------ |
| `truefoundry.truefoundryBootstrap.enabled` | Flag to enable bootstrap job to prep cluster for truefoundry installation | `true` |

### Truefoundry virtual service parameters

| Name | Description | Value |
| ------------------------------------- | -------------------------------------------------- | ------- |
| `truefoundry.virtualservice.enabled` | Flag to enable virtualservice | `false` |
| `truefoundry.virtualservice.hosts` | Hosts for truefoundry virtualservice | `[]` |
| `truefoundry.virtualservice.gateways` | Istio gateways to be configured for virtualservice | `[]` |

### database. Can be left empty if using the dev mode parameters

Expand Down
14 changes: 14 additions & 0 deletions charts/tfy-k8s-generic-inframold/templates/truefoundry.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -41,6 +41,20 @@ spec:
enabled: {{ .Values.truefoundry.devMode.enabled }}
truefoundryBootstrap:
enabled: {{ .Values.truefoundry.truefoundryBootstrap.enabled }}
{{- if .Values.truefoundry.virtualservice.enabled }}
truefoundryFrontendApp:
istio:
virtualservice:
enabled: true
{{- range $v := .Values.truefoundry.virtualservice.hosts }}
hosts:
- {{ $v | quote }}
{{- end }}
{{- range $v := .Values.truefoundry.virtualservice.gateways }}
gateways:
- {{ $v | quote }}
{{- end }}
{{- end }}
nats:
{{- with .Values.tolerations }}
tolerations:
Expand Down
10 changes: 10 additions & 0 deletions charts/tfy-k8s-generic-inframold/values.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -104,7 +104,17 @@ truefoundry:
## @section truefoundryBootstrap parameters
## @param truefoundry.truefoundryBootstrap.enabled Flag to enable bootstrap job to prep cluster for truefoundry installation
truefoundryBootstrap:
enabled: true

## @section Truefoundry virtual service parameters
virtualservice:
## @param truefoundry.virtualservice.enabled Flag to enable virtualservice
enabled: false
## @param truefoundry.virtualservice.hosts Hosts for truefoundry virtualservice
hosts: []
## @param truefoundry.virtualservice.gateways Istio gateways to be configured for virtualservice
gateways: []

## @section database. Can be left empty if using the dev mode parameters
database:
## @param truefoundry.database.host Hostname of the database
Expand Down

0 comments on commit a610350

Please sign in to comment.