|
| 1 | +# This file has test values to use when the chart is being linted |
| 2 | +# https://github.com/helm/chart-testing/blob/master/doc/ct_lint.md |
| 3 | +# The values are as though the chart is being deployed for a Workday integrated system. |
| 4 | + |
| 5 | +lmsType: "WORKDAY" |
| 6 | + |
| 7 | +managersSchedulerJob: |
| 8 | + enabled: true |
| 9 | + |
| 10 | +rostersSchedulerJob: |
| 11 | + enabled: true |
| 12 | + |
| 13 | +# Now the rest of this file is the same as charts/thub/ci/test-values.yaml |
| 14 | + |
| 15 | +# AWS credentials for S3 access |
| 16 | +awsS3keyId: "exampleId" |
| 17 | +awsS3secretKey: "verySecretKey" |
| 18 | + |
| 19 | +assigned-item-service: |
| 20 | + # The datasource info for connecting the Grails application to the database |
| 21 | + dataSource: |
| 22 | + username: "test_username" |
| 23 | + password: "test_password" |
| 24 | + url: "jdbc:mysql://example.us-east-1.rds.amazonaws.com:3306/schema_name" |
| 25 | + |
| 26 | +item-service: |
| 27 | + # The datasource info for connecting the Grails application to the database |
| 28 | + dataSource: |
| 29 | + username: "test_username" |
| 30 | + password: "test_password" |
| 31 | + url: "jdbc:mysql://example.us-east-1.rds.amazonaws.com:3306/schema_name" |
| 32 | + |
| 33 | +lms-data-service: |
| 34 | + # The datasource info for connecting the Grails application to the database |
| 35 | + dataSource: |
| 36 | + username: "test_username" |
| 37 | + password: "test_password" |
| 38 | + url: "jdbc:mysql://example.us-east-1.rds.amazonaws.com:3306/schema_name" |
| 39 | + # Encryption key for storing sensitive values in the database |
| 40 | + encryptionPassword: "test_password" |
| 41 | + # Connection info for the SFTP that the LMS interacts with |
| 42 | + sftp: |
| 43 | + host: "sftp8.sapsf.com" |
| 44 | + user: "my_test_user" |
| 45 | + password: "test_password" |
| 46 | + downloadDirectory: "FEED/DOWNLOAD/ROLLCALL" |
| 47 | + uploadDirectory: "FEED/UPLOAD" |
| 48 | + |
| 49 | +ojt: |
| 50 | + # The datasource info for connecting the Grails application to the database |
| 51 | + dataSource: |
| 52 | + username: "test_username" |
| 53 | + password: "test_password" |
| 54 | + url: "jdbc:mysql://example.us-east-1.rds.amazonaws.com:3306/schema_name" |
| 55 | + |
| 56 | +user-service: |
| 57 | + # The datasource info for connecting the Grails application to the database |
| 58 | + dataSource: |
| 59 | + username: "test_username" |
| 60 | + password: "test_password" |
| 61 | + url: "jdbc:mysql://example.us-east-1.rds.amazonaws.com:3306/schema_name" |
| 62 | + |
| 63 | +keycloak-config: |
| 64 | + # The username for the database that Keycloak connects to |
| 65 | + databaseUsername: "example_keycloak_username" |
| 66 | + # The password for the database that Keycloak connects to |
| 67 | + databasePassword: "example_keycloak_password" |
| 68 | + # Keycloak configuration values |
| 69 | + realmName: "test-realm" |
| 70 | + clientId: "ojt" |
| 71 | + clientSecret: "abcdefg" |
| 72 | + # Credentials for the admin of the Keycloak server (master realm) |
| 73 | + masterAdminUsername: "test-admin" |
| 74 | + # checkov:skip=CKV_SECRET_6:This entire file is just test values |
| 75 | + masterAdminPassword: "examplePassword" |
| 76 | + # Credentials for an admin of this realm |
| 77 | + realmAdminUsername: "realm-admin-username" |
| 78 | + # checkov:skip=CKV_SECRET_6:This entire file is just test values |
| 79 | + realmAdminPassword: "anotherPassword" |
0 commit comments