-
Notifications
You must be signed in to change notification settings - Fork 32
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
e895cf5
commit 64b6dd9
Showing
28 changed files
with
134 additions
and
289 deletions.
There are no files selected for viewing
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,8 +1,11 @@ | ||
- name: Setup DB2 | ||
import_playbook: setup-db2.yml | ||
when: "'db2_servers' in groups" | ||
|
||
- name: Setup Oracle | ||
import_playbook: setup-oracle.yml | ||
when: "'oracle_servers' in groups" | ||
|
||
- name: Setup MSSQL | ||
import_playbook: setup-mssql.yml | ||
when: "'mssql_servers' in groups" |
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 |
---|---|---|
|
@@ -29,12 +29,14 @@ webfront: | |
ingress: | ||
annotations: | ||
nginx.ingress.kubernetes.io/rewrite-target: /$1 | ||
kubernetes.io/ingress.class: nginx | ||
path: /boards/(.*) | ||
# This hostname must match other Ingresses defined in your CP environment | ||
# If all ingresses start with * you must match the pattern, or all traffic will be routed to Boards and everything will break | ||
# kubectl get ingresses --all-namespaces | ||
hosts: | ||
{% if __ingress_multi_domain_enabled == "true" %} | ||
- "*.{{ load_balancer_dns.split('.', 1)[1] }}" | ||
{% if load_balancer_dns != frontend_fqdn %} | ||
- "*.{{ frontend_fqdn.split('.', 1)[1] }}" | ||
{% endif %} | ||
|
@@ -45,13 +47,6 @@ webfront: | |
core: | ||
image: | ||
name: kudosboards-core | ||
env: | ||
NOTIFIER_EMAIL_HOST: smtp.example.com | ||
NOTIFIER_EMAIL_USERNAME: user123 | ||
NOTIFIER_EMAIL_PASSWORD: passw0rd | ||
# APP_NAME: Kudos Boards # Used for all notifications, e.g. Orient Me | ||
# NOTIFIER_EMAIL_FROM_NAME: Kudos Boards | ||
# NOTIFIER_EMAIL_FROM_EMAIL: [email protected] | ||
ingress: | ||
annotations: | ||
nginx.ingress.kubernetes.io/rewrite-target: /$1 | ||
|
@@ -90,13 +85,23 @@ user: | |
# CONNECTIONS_NAME: HCL Connections | ||
CONNECTIONS_CLIENT_ID: kudosboards | ||
CONNECTIONS_URL: https://{{ frontend_fqdn }} | ||
CONNECTIONS_CLIENT_SECRET: {{ kudosboards_secret.stdout_lines | last }} | ||
CONNECTIONS_CLIENT_SECRET: {{ kudosboards_secret.stdout_lines | last }} | ||
CONNECTIONS_ADMINS: "[\"[email protected]\", \"[email protected]\", \"PROF_GUID_3\"]" | ||
|
||
provider: | ||
image: | ||
name: kudosboards-provider | ||
|
||
events: | ||
image: | ||
name: kudosboards-boards-event | ||
env: | ||
NOTIFIER_EMAIL_HOST: smtp.example.com | ||
NOTIFIER_EMAIL_USERNAME: user123 | ||
NOTIFIER_EMAIL_PASSWORD: passw0rd | ||
# NOTIFIER_EMAIL_FROM_NAME: Kudos Boards | ||
# NOTIFIER_EMAIL_FROM_EMAIL: [email protected] | ||
|
||
migration: | ||
image: | ||
name: kudosboards-activity-migration | ||
|
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.