Skip to content

Commit

Permalink
Documentation and schema adjustments
Browse files Browse the repository at this point in the history
  • Loading branch information
jullianow committed Jan 2, 2025
1 parent 7548d87 commit ff0b906
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 6 deletions.
2 changes: 1 addition & 1 deletion charts/atlantis/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -88,7 +88,7 @@ extraManifests:
| command | list | `[]` | Override the command field of the Atlantis container. |
| commonLabels | object | `{}` | Common Labels for all resources created by this chart. |
| config | string | `""` | Override atlantis main configuration by config map, ref: https://www.runatlantis.io/docs/using-slack-hooks.html#configuring-atlantis. Check values.yaml for examples. |
| containerPort | int | `0` | [optional] Define the port you would like atlantis to run on. Defaults to 4141. |
| containerPort | int | `0` | [optional] Define the port you would like atlantis to run on. When 0, the value of service.targetPort is used. |
| containerSecurityContext | object | `{}` | Check values.yaml for examples. |
| customPem | string | `""` | Allows to override the /etc/ssl/certs/ca-certificates.cer with your custom one. You have to create a secret with the specified name. |
| dataStorage | string | `""` | DEPRECATED - Disk space available to check out repositories. Example: 5Gi. |
Expand Down
6 changes: 2 additions & 4 deletions charts/atlantis/values.schema.json
Original file line number Diff line number Diff line change
Expand Up @@ -270,11 +270,9 @@
"containerPort": {
"description": "Port for the Atlantis container, when necessary specify a value different from the Service's targetPort",
"type": [
"string",
"integer",
"null"
"integer"
],
"default": null
"default": 0
},
"image": {
"type": "object",
Expand Down
2 changes: 1 addition & 1 deletion charts/atlantis/values.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -172,7 +172,7 @@ serviceAccountSecrets: {}
# Default values for atlantis (override as needed).
## -------------------------- ##

# -- (int) [optional] Define the port you would like atlantis to run on. Defaults to 4141.
# -- (int) [optional] Define the port you would like atlantis to run on. When 0, the value of service.targetPort is used.
containerPort: 0

image:
Expand Down

0 comments on commit ff0b906

Please sign in to comment.