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

[CI] Publish inframold charts #781

Merged
merged 3 commits into from
Nov 11, 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/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