Skip to content

Commit

Permalink
Set the image.repository to string type
Browse files Browse the repository at this point in the history
  • Loading branch information
tczekajlo committed Jul 7, 2021
1 parent 8faff90 commit af16963
Show file tree
Hide file tree
Showing 9 changed files with 9 additions and 9 deletions.
2 changes: 1 addition & 1 deletion charts/duckling/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -42,7 +42,7 @@ Duckling is a Haskell library that parses text into structured data.
| image.name | string | `"duckling"` | Duckling image name to use (relative to `registry`) |
| image.pullPolicy | string | `"IfNotPresent"` | Duckling image pullPolicy |
| image.pullSecrets | list | `[]` | Duckling repository pullSecret |
| image.repository | string | `nil` | Override default registry + image.name for Duckling |
| image.repository | string | `""` | Override default registry + image.name for Duckling |
| image.tag | string | `"0.1.6.5-r3"` | Duckling image tag to use |
| ingress.annotations | object | `{}` | Ingress annotations |
| ingress.enabled | bool | `false` | Set to true to enable ingress |
Expand Down
2 changes: 1 addition & 1 deletion charts/duckling/values.schema.json
Original file line number Diff line number Diff line change
Expand Up @@ -64,7 +64,7 @@
"type": "array"
},
"repository": {
"type": "null"
"type": "string"
},
"tag": {
"type": "string"
Expand Down
2 changes: 1 addition & 1 deletion charts/duckling/values.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,7 @@ image:
tag: "0.1.6.5-r3"

# -- Override default registry + image.name for Duckling
repository:
repository: ""

# -- Duckling image pullPolicy
pullPolicy: IfNotPresent
Expand Down
2 changes: 1 addition & 1 deletion charts/rasa-action-server/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,7 @@ Rasa Action Server Helm chart for Kubernetes
| image.name | string | `"rasa-x-demo"` | Action Server image name to use (relative to `registry`) |
| image.pullPolicy | string | `"IfNotPresent"` | Action Server image pullPolicy |
| image.pullSecrets | list | `[]` | Action Server repository pullSecret |
| image.repository | string | `nil` | Override default registry + image.name for Action Server |
| image.repository | string | `""` | Override default registry + image.name for Action Server |
| image.tag | string | `"0.40.0"` | Action Server image tag to use |
| ingress.annotations | object | `{}` | Ingress annotations |
| ingress.enabled | bool | `false` | Set to true to enable ingress |
Expand Down
2 changes: 1 addition & 1 deletion charts/rasa-action-server/values.schema.json
Original file line number Diff line number Diff line change
Expand Up @@ -64,7 +64,7 @@
"type": "array"
},
"repository": {
"type": "null"
"type": "string"
},
"tag": {
"type": "string"
Expand Down
2 changes: 1 addition & 1 deletion charts/rasa-action-server/values.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,7 @@ image:
tag: "0.40.0"

# -- Override default registry + image.name for Action Server
repository:
repository: ""

# -- Action Server image pullPolicy
pullPolicy: IfNotPresent
Expand Down
2 changes: 1 addition & 1 deletion charts/rasa/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -306,7 +306,7 @@ In the [`examples/rasa`](../../examples) directory you can find more detailed ex
| image.name | string | `"rasa"` | Rasa Open Source image name to use (relative to `registry`) |
| image.pullPolicy | string | `"IfNotPresent"` | Rasa Open Source image pullPolicy |
| image.pullSecrets | list | `[]` | Rasa Open Source repository pullSecret |
| image.repository | string | `nil` | Override default registry + image.name for Rasa Open Source |
| image.repository | string | `""` | Override default registry + image.name for Rasa Open Source |
| image.tag | string | `"2.7.1"` | Rasa Open Source image tag to use |
| ingress.annotations | object | `{}` | Ingress annotations |
| ingress.enabled | bool | `false` | Set to true to enable ingress |
Expand Down
2 changes: 1 addition & 1 deletion charts/rasa/values.schema.json
Original file line number Diff line number Diff line change
Expand Up @@ -304,7 +304,7 @@
"type": "array"
},
"repository": {
"type": "null"
"type": "string"
},
"tag": {
"type": "string"
Expand Down
2 changes: 1 addition & 1 deletion charts/rasa/values.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -219,7 +219,7 @@ image:
tag: "2.7.1"

# -- Override default registry + image.name for Rasa Open Source
repository:
repository: ""

# -- Rasa Open Source image pullPolicy
pullPolicy: IfNotPresent
Expand Down

0 comments on commit af16963

Please sign in to comment.