Skip to content

Commit

Permalink
fix
Browse files Browse the repository at this point in the history
  • Loading branch information
aslafy-z committed Jul 25, 2024
1 parent 5d7d303 commit d7bb7a1
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 8 deletions.
7 changes: 1 addition & 6 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -123,6 +123,7 @@ helm delete --namespace test my-application
| deployment.openshiftOAuthProxy.port | int | `8080` | Port on which application is running inside container. |
| deployment.openshiftOAuthProxy.secretName | string | `"openshift-oauth-proxy-tls"` | Secret name for the OAuth Proxy TLS certificate. |
| deployment.openshiftOAuthProxy.image | string | `"openshift/oauth-proxy:latest"` | Image for the OAuth Proxy. |
| deployment.openshiftOAuthProxy.disableTLSArg | bool | `false` | If disabled `--http-address=:8081` will be used instead of `--https-address=:8443`. It can be useful when an ingress is enabled for the application. |
| deployment.securityContext | object | `nil` | Security Context for the pod. |
| deployment.command | list | `[]` | Command for the app container. |
| deployment.args | list | `[]` | Args for the app container. |
Expand Down Expand Up @@ -393,12 +394,6 @@ helm delete --namespace test my-application
| backup.includedResources | list | `nil` | List of resource types to include in the backup. |
| backup.excludedResources | list | `nil` | List of resource types to exclude from the backup. |

### Other Values

| Key | Type | Default | Description |
|-----|------|---------|-------------|
| deployment.openshiftOAuthProxy.disableTLSArg | bool | `false` | |

## Naming convention for ConfigMap, Secret, SealedSecret and ExternalSecret

Name format of ConfigMap, Secret, SealedSecret and ExternalSecret is `{{ template "application.name" $ }}-{{ $nameSuffix }}` then:
Expand Down
4 changes: 2 additions & 2 deletions application/values.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -375,8 +375,8 @@ deployment:
# -- (string) Image for the OAuth Proxy.
# @section -- Deployment Parameters
image: openshift/oauth-proxy:latest
# -- (bool) If disabled --http-address=:8081 will be used instead of --https-address=:8443.
# It can be useful when an ingress is enabled for the application
# -- (bool) If disabled `--http-address=:8081` will be used instead of `--https-address=:8443`.
# It can be useful when an ingress is enabled for the application.
# @section -- Deployment Parameters
disableTLSArg: false
# -- (object) Security Context for the pod.
Expand Down

0 comments on commit d7bb7a1

Please sign in to comment.