-
Notifications
You must be signed in to change notification settings - Fork 0
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
31a7081
commit befa06c
Showing
40 changed files
with
1,930 additions
and
2 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
2 changes: 1 addition & 1 deletion
2
furms-devops-tooling/files/config_templates/4.1-dev/version_vars.yml
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 +1 @@ | ||
unityVersion: 3.8.2 | ||
unityVersion: 3.9.0 |
87 changes: 87 additions & 0 deletions
87
furms-devops-tooling/files/config_templates/4.1/furms-server/application.yml
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 |
---|---|---|
@@ -0,0 +1,87 @@ | ||
app: | ||
version: '@project.version@' | ||
|
||
server: | ||
port: {{furmsServer.port}} | ||
address: {{furmsServer.host}} | ||
ssl: | ||
key-store-type: {{furmsServer.pki.keyStore.type}} | ||
key-store-password: {{furmsServer.pki.keyStore.password}} | ||
key-store: ./{{keystoreTargetFileName}} | ||
key-password: ${server.ssl.key-store-password} | ||
enabled-protocols: TLSv1.2, TLSv1.3 | ||
|
||
furms: | ||
unity: | ||
url: https://{{unity.advertisedHost}} | ||
ssl: | ||
trust-store: file:./{{truststoreTargetFileName}} | ||
trust-store-password: {{trustStore.password}} | ||
|
||
admin-url: https://{{unity.host}}:{{unity.port}}/rest-admin/v1 | ||
admin-user: {{unityApiClientUsername}} | ||
admin-password: {{unityApiClientPassword}} | ||
oAuth: | ||
clientId: {{unityOauthClientUsername}} | ||
clientSecret: {{unityOauthClientPassword}} | ||
url: https://{{furmsServer.advertisedHost}} | ||
psk: | ||
centralIdPUser: {{furmsServer.preSharedKeys.cIdP.username}} | ||
centralIdPSecret: {{furmsServer.preSharedKeys.cIdP.password}} | ||
front: | ||
maxSessionInactivity: {{furmsServer.ui.maxSessionInactivityInSeconds if furmsServer.ui.maxSessionInactivityInSeconds is defined else '1800'}} | ||
secondsBeforeShowingSessionExpirationWarning: {{furmsServer.ui.secondsBeforeShowingLogoutWarning if furmsServer.ui.secondsBeforeShowingLogoutWarning is defined else '120'}} | ||
language: en | ||
layout: | ||
styles: | ||
custom: file:./layout/custom_style.css | ||
panels: | ||
top: file:./layout/top_panel.html | ||
left: file:./layout/left_panel.html | ||
right: file:./layout/right_panel.html | ||
bottom: file:./layout/bottom_panel.html | ||
|
||
sshkeys: | ||
cleanStaleRequestsAfter: 1D | ||
notification: | ||
new-policy-template-id: policyAcceptanceNew | ||
new-policy-revision-template-id: policyAcceptanceRevision | ||
new-invitation-template-id: invitationNew | ||
accepted-invitation-template-id: invitationAccepted | ||
rejected-invitation-template-id: invitationRejected | ||
new-application-template-id: applicationNew | ||
accepted-application-template-id: applicationAccepted | ||
rejected-application-template-id: applicationRejected | ||
resource-usage-alarm-template-id: resourceUsageAlarm | ||
resource-usage-alarm-without-url-template-id: resourceUsageAlarmWithoutUrl | ||
|
||
invitations: | ||
expiration-time-in-seconds: 604800 | ||
fenix-form: fenixForm | ||
site-form: siteForm | ||
community-form: communityForm | ||
project-form: projectForm | ||
|
||
spring: | ||
datasource: | ||
url: jdbc:postgresql://{{furmsServer.db.host}}/{{furmsServer.db.dbName}} | ||
username: {{furmsServer.db.username}} | ||
password: {{furmsServer.db.password}} | ||
driver-class-name: org.postgresql.Driver | ||
hikari: | ||
leak-detection-threshold: 10000 | ||
rabbitmq: | ||
host: {{furmsServer.broker.host}} | ||
port: {{furmsServer.broker.port}} | ||
username: {{furmsServer.broker.username}} | ||
password: {{furmsServer.broker.password}} | ||
connection-timeout: 10000 | ||
virtualHost: {{furmsServer.broker.virtualHost}} | ||
ssl: | ||
enabled: true | ||
trustStore: ${furms.unity.ssl.trust-store} | ||
trustStorePassword: ${furms.unity.ssl.trust-store-password} | ||
algorithm: TLSv1.2 | ||
|
||
logging: | ||
config: ./logback.xml |
Empty file.
Empty file.
Empty file.
Empty file.
Empty file.
28 changes: 28 additions & 0 deletions
28
furms-devops-tooling/files/config_templates/4.1/furms-server/logback.xml
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 |
---|---|---|
@@ -0,0 +1,28 @@ | ||
<configuration scan="true" scanPeriod="10 seconds"> | ||
|
||
<appender name="ROLLING" class="ch.qos.logback.core.rolling.RollingFileAppender"> | ||
<file>../../logs/furms-service.log</file> | ||
<rollingPolicy class="ch.qos.logback.core.rolling.SizeAndTimeBasedRollingPolicy"> | ||
<fileNamePattern>logs/furms-service-%d{yyyy-MM-dd}.%i.log</fileNamePattern> | ||
<maxFileSize>100MB</maxFileSize> | ||
<maxHistory>90</maxHistory> | ||
<totalSizeCap>10GB</totalSizeCap> | ||
</rollingPolicy> | ||
|
||
<encoder> | ||
<pattern>%date [%10.10thread] [%X{queueName}] [%X{userId}] %-5level %logger - %msg%n</pattern> | ||
</encoder> | ||
</appender> | ||
|
||
<root level="INFO"> | ||
<appender-ref ref="ROLLING" /> | ||
</root> | ||
|
||
<logger name="io.imunity.furms" level="INFO" /> | ||
|
||
<logger name="org.springframework.security" level="INFO" /> | ||
<logger name="org.springframework.security.oauth2" level="INFO" /> | ||
<logger name="org.springframework.web.client.RestTemplate" level="INFO" /> | ||
<logger name="org.springframework.context.support" level="WARN" /> | ||
|
||
</configuration> |
Oops, something went wrong.