Skip to content

Commit

Permalink
fix(instant-chart): default values
Browse files Browse the repository at this point in the history
  • Loading branch information
kimyvgy committed Jul 19, 2024
1 parent 32c0d3f commit e86fbe1
Show file tree
Hide file tree
Showing 3 changed files with 14 additions and 10 deletions.
2 changes: 1 addition & 1 deletion charts/instant-chart/Chart.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ apiVersion: v2
name: instant-chart
description: A Helm chart enables rapid deployment
type: application
version: 0.1.1
version: 0.1.2
dependencies:
- name: common
version: 2.20.5
Expand Down
13 changes: 7 additions & 6 deletions charts/instant-chart/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -78,12 +78,13 @@ See [helm uninstall](https://helm.sh/docs/helm/helm_uninstall/) for command docu

### Service parameters

| Name | Description | Value |
| --------------------- | -------------------------------------------------------------------------- | ----------- |
| `service.enabled` | Specifies whether a service should be created. | `true` |
| `service.type` | The type of the service (ClusterIP, NodePort, LoadBalancer, ExternalName). | `ClusterIP` |
| `service.ports` | The ports that the service should expose. | |
| `service.annotations` | Annotations to add to the service. | `{}` |
| Name | Description | Value |
| ---------------------- | -------------------------------------------------------------------------- | ----------- |
| `service.enabled` | Specifies whether a service should be created. | `true` |
| `service.type` | The type of the service (ClusterIP, NodePort, LoadBalancer, ExternalName). | `ClusterIP` |
| `service.ports` | The ports that the service should expose. | |
| `service.annotations` | Annotations to add to the service. | `{}` |
| `service.externalName` | Set external name when using ExternalName Service | `{}` |

### Ingress parameters

Expand Down
9 changes: 6 additions & 3 deletions charts/instant-chart/values.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -39,9 +39,7 @@ replicas: 1
## mountPath: "/data"
## subPath: "my-subpath"
## readOnly: true
# containers: []
containers:
- image: nginx
containers: []

## Additional initialization containers
##
Expand Down Expand Up @@ -162,6 +160,11 @@ service:
##
annotations: {}

## Add additional fields to the service spec: externalName, externalIPs, .etc.
##
## externalName: ""
## externalIPs: []

## Ingress configuration
## ref https://kubernetes.io/docs/concepts/services-networking/ingress
##
Expand Down

0 comments on commit e86fbe1

Please sign in to comment.