-
Notifications
You must be signed in to change notification settings - Fork 26
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
feat: add custom scripts to cn (#613)
* fix: add default lbIP to avoid potential errors during helm install Example error: spec.template.spec.hostAliases.ip: Invalid value: "": must be valid IP address * feat: add support for custom scripts in cn * chore: prepare release 1.8.29 * chore: prepare release 1.8.29 --------- Co-authored-by: moabu <[email protected]>
- Loading branch information
Showing
63 changed files
with
453 additions
and
151 deletions.
There are no files selected for viewing
Binary file not shown.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -46,73 +46,73 @@ maintainers: | |
email: [email protected] | ||
description: Gluu Access and Identity Mangement | ||
name: gluu | ||
version: 1.8.28 | ||
version: 1.8.29 | ||
|
||
dependencies: | ||
- name: config | ||
condition: global.config.enabled | ||
version: 1.8.28 | ||
version: 1.8.29 | ||
|
||
- name: opendj | ||
condition: global.opendj.enabled | ||
version: 1.8.28 | ||
version: 1.8.29 | ||
|
||
- name: jackrabbit | ||
condition: global.jackrabbit.enabled | ||
version: 1.8.28 | ||
version: 1.8.29 | ||
|
||
- name: oxauth | ||
condition: global.oxauth.enabled | ||
version: 1.8.28 | ||
version: 1.8.29 | ||
|
||
- name: fido2 | ||
condition: global.fido2.enabled | ||
version: 1.8.28 | ||
version: 1.8.29 | ||
|
||
- name: scim | ||
condition: global.scim.enabled | ||
version: 1.8.28 | ||
version: 1.8.29 | ||
|
||
- name: oxtrust | ||
condition: global.oxtrust.enabled | ||
version: 1.8.28 | ||
version: 1.8.29 | ||
|
||
- name: nginx-ingress | ||
condition: global.nginx-ingress.enabled | ||
version: 1.8.28 | ||
version: 1.8.29 | ||
|
||
- name: oxshibboleth | ||
condition: global.oxshibboleth.enabled | ||
version: 1.8.28 | ||
version: 1.8.29 | ||
|
||
- name: oxpassport | ||
version: 1.8.28 | ||
version: 1.8.29 | ||
condition: config.configmap.gluuPassportEnabled | ||
|
||
- name: casa | ||
version: 1.8.28 | ||
version: 1.8.29 | ||
condition: config.configmap.gluuCasaEnabled | ||
|
||
- name: oxauth-key-rotation | ||
condition: global.oxauth-key-rotation.enabled | ||
version: 1.8.28 | ||
version: 1.8.29 | ||
|
||
- name: cr-rotate | ||
version: 1.8.28 | ||
version: 1.8.29 | ||
condition: global.cr-rotate.enabled | ||
|
||
- name: oxd-server | ||
condition: global.oxd-server.enabled | ||
version: 1.8.28 | ||
version: 1.8.29 | ||
|
||
- name: persistence | ||
condition: global.persistence.enabled | ||
version: 1.8.28 | ||
version: 1.8.29 | ||
|
||
- name: gluu-istio-ingress | ||
condition: global.istio.ingress | ||
version: 1.8.28 | ||
version: 1.8.29 | ||
|
||
- name: gluu-alb-ingress | ||
condition: global.alb.ingress | ||
version: 1.8.28 | ||
version: 1.8.29 |
Large diffs are not rendered by default.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,6 @@ | ||
# config | ||
|
||
![Version: 1.8.28](https://img.shields.io/badge/Version-1.8.28-informational?style=flat-square) ![Type: application](https://img.shields.io/badge/Type-application-informational?style=flat-square) ![AppVersion: 4.5.3](https://img.shields.io/badge/AppVersion-4.5.3-informational?style=flat-square) | ||
![Version: 1.8.29](https://img.shields.io/badge/Version-1.8.29-informational?style=flat-square) ![Type: application](https://img.shields.io/badge/Type-application-informational?style=flat-square) ![AppVersion: 4.5.3](https://img.shields.io/badge/AppVersion-4.5.3-informational?style=flat-square) | ||
|
||
Configuration parameters for setup and initial configuration secret and config layers used by Gluu services. | ||
|
||
|
@@ -102,6 +102,7 @@ Kubernetes: `>=v1.22.0-0` | |
| configmap.gluuSyncShibManifests | bool | `false` | Activate manual Shib files sync - depreciated | | ||
| configmap.lbAddr | string | `""` | Loadbalancer address for AWS if the FQDN is not registered. | | ||
| countryCode | string | `"US"` | Country code. Used for certificate creation. | | ||
| customScripts | list | `[]` | Add custom scripts that have been mounted to run before the entrypoint. | | ||
| dnsConfig | object | `{}` | Add custom dns config | | ||
| dnsPolicy | string | `""` | Add custom dns policy | | ||
| email | string | `"[email protected]"` | Email address of the administrator usually. Used for certificate creation. | | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
2 changes: 1 addition & 1 deletion
2
pygluu/kubernetes/templates/helm/gluu/charts/cr-rotate/README.md
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
2 changes: 1 addition & 1 deletion
2
pygluu/kubernetes/templates/helm/gluu/charts/gluu-alb-ingress/README.md
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
2 changes: 1 addition & 1 deletion
2
pygluu/kubernetes/templates/helm/gluu/charts/gluu-istio-ingress/README.md
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
2 changes: 1 addition & 1 deletion
2
pygluu/kubernetes/templates/helm/gluu/charts/nginx-ingress/README.md
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.