Skip to content

Commit

Permalink
Merge pull request #1015 from truefoundry/truefoundry-version-
Browse files Browse the repository at this point in the history
[CI] Publish truefoundry to version
  • Loading branch information
geekygulshan authored Feb 5, 2025
2 parents 5a03fef + d6ee6f0 commit c3c8fbc
Show file tree
Hide file tree
Showing 3 changed files with 10 additions and 5 deletions.
2 changes: 1 addition & 1 deletion charts/truefoundry/Chart.yaml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
apiVersion: v2
name: truefoundry
version: 0.29.0
version: 0.29.1
description: "TrueFoundry Control Plane Components"
maintainers:
- name: truefoundry
Expand Down
5 changes: 3 additions & 2 deletions charts/truefoundry/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ truefoundry is an applications that gets deployed on the kubernetes cluster to s
| `global.truefoundryImagePullConfigJSON` | JSON config for image pull secret | `""` |
| `global.tenantName` | Name of the tenant | `""` |
| `global.controlPlaneURL` | URL of the control plane | `http://truefoundry-truefoundry-frontend-app.truefoundry.svc.cluster.local:5000` |
| `global.controlPlaneChartVersion` | Version of control-plane chart | `0.29.0` |
| `global.controlPlaneChartVersion` | Version of control-plane chart | `0.29.1` |
| `global.existingTruefoundryCredsSecret` | Name of the existing truefoundry creds secret | `""` |
| `global.database.host` | Control plane database hostname when dev mode is not enabled | `""` |
| `global.database.name` | Control plane database name when dev mode is not enabled | `""` |
Expand Down Expand Up @@ -137,7 +137,7 @@ truefoundry is an applications that gets deployed on the kubernetes cluster to s
| `servicefoundryServer.replicaCount` | Number of replicas for the servicefoundry server | `1` |
| `servicefoundryServer.global` | Global values for the servicefoundry server | `{}` |
| `servicefoundryServer.image.repository` | Image repository for the servicefoundry server | `tfy.jfrog.io/tfy-private-images/servicefoundry-server` |
| `servicefoundryServer.image.tag` | Image tag for the servicefoundry server | `v0.29.0` |
| `servicefoundryServer.image.tag` | Image tag for the servicefoundry server | `v0.29.1` |
| `servicefoundryServer.environmentName` | Environment name for the servicefoundry server | `default` |
| `servicefoundryServer.envSecretName` | Secret name for the servicefoundry server environment variables | `servicefoundry-server-env-secret` |
| `servicefoundryServer.imagePullPolicy` | Image pull policy for the servicefoundry server | `IfNotPresent` |
Expand Down Expand Up @@ -263,6 +263,7 @@ truefoundry is an applications that gets deployed on the kubernetes cluster to s
| `nats.nats.resources.limits.memory` | Memory limit for NATS server | `1024Mi` |
| `nats.nats.resources.requests.cpu` | CPU request for NATS server | `200m` |
| `nats.nats.resources.requests.memory` | Memory request for NATS server | `512Mi` |
| `nats.nats.limits.maxPayload` | Maximum message payload size for NATS server | `4Mi` |
| `nats.natsbox.enabled` | Bool to enable NATSBox | `false` |
| `nats.natsbox.image.repository` | NATSBox image repository | `tfy.jfrog.io/tfy-mirror/natsio/nats-box` |
| `nats.natsbox.image.tag` | NATSBox image tag | `0.13.2` |
Expand Down
8 changes: 6 additions & 2 deletions charts/truefoundry/values.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ global:
## @param global.controlPlaneURL URL of the control plane
controlPlaneURL: "http://truefoundry-truefoundry-frontend-app.truefoundry.svc.cluster.local:5000"
## @param global.controlPlaneChartVersion Version of control-plane chart
controlPlaneChartVersion: 0.29.0
controlPlaneChartVersion: 0.29.1
# If you have an existing truefoundry-creds secret, provide the name here.
# This will ignore `.global.database` and `.global.tfyApiKey` values.
## @param global.existingTruefoundryCredsSecret Name of the existing truefoundry creds secret
Expand Down Expand Up @@ -403,7 +403,7 @@ servicefoundryServer:
## @param servicefoundryServer.image.repository Image repository for the servicefoundry server
repository: "tfy.jfrog.io/tfy-private-images/servicefoundry-server"
## @param servicefoundryServer.image.tag Image tag for the servicefoundry server
tag: "v0.29.0"
tag: "v0.29.1"
## @param servicefoundryServer.environmentName Environment name for the servicefoundry server
environmentName: default
## @param servicefoundryServer.envSecretName Secret name for the servicefoundry server environment variables
Expand Down Expand Up @@ -804,6 +804,10 @@ nats:
cpu: 200m
## @param nats.nats.resources.requests.memory Memory request for NATS server
memory: 512Mi
## nats.nats.limits Additional limits for NATS server
limits:
## @param nats.nats.limits.maxPayload Maximum message payload size for NATS server
maxPayload: 4Mi
## nats.natsbox NATSBox configuration
natsbox:
## @param nats.natsbox.enabled Bool to enable NATSBox
Expand Down

0 comments on commit c3c8fbc

Please sign in to comment.