Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Feature/logger jar #874

Merged
merged 6 commits into from
Mar 25, 2025
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 2 additions & 1 deletion ansible/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -15,6 +15,7 @@

# Tomcat and Apache configuration
If your application requires a WAR file deployment then you use the common ```tomcat_deploy``` and ```apache_vhost``` roles. This will ensure a consistent approach to Tomcat and Apache configuration.
If your application requires a JAR deployment then use the ```exec_jar``` role.

## How to use them

Expand All @@ -28,7 +29,7 @@ The easiest way to use these roles is to use parameterised includes in your main
- deploy
}}'

- include: ../../tomcat_deploy/tasks/main.yml war_url='{{ logger_war_url }}' context_path='{{ logger_context_path }}' hostname='{{ logger_hostname }}'
- include: ../../tomcat_deploy/tasks/main.yml war_url='{{ logger_artifact_url }}' context_path='{{ logger_context_path }}' hostname='{{ logger_hostname }}'
tags:
- logger
- apache_vhost
Expand Down
2 changes: 1 addition & 1 deletion ansible/logger-standalone.yml
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
roles:
- common
- java
- tomcat
- {role: tomcat, when: not exec_jar}
- webserver
- mysql
- logger-service
4 changes: 4 additions & 0 deletions ansible/roles/logger-service/handlers/main.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,4 @@
- name: restart logger
service: name=logger state=restarted enabled=yes
when:
- skip_handlers | default("false") | bool == false
47 changes: 46 additions & 1 deletion ansible/roles/logger-service/tasks/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -169,10 +169,55 @@

- include_tasks: ../../tomcat_deploy/tasks/main.yml
vars:
war_url: '{{ logger_war_url }}'
war_url: '{{ logger_artifact_url }}'
context_path: '{{ logger_context_path }}'
hostname: '{{ logger_hostname }}'
tags:
- logger-service
- deploy
- tomcat_vhost
when: not exec_jar

- name: add logger-service jar and setup service
include_role:
name: exec-jar
vars:
service_name: 'logger'
jar_url: '{{ logger_artifact_url }}'
log_config_filename: "logback.xml"
java_headless: True
tags:
- deploy
- service
- logger-service
when: exec_jar

- name: ensure target directories exist [data subdirectories etc.]
file: path={{item}} state=directory owner=logger group=logger
with_items:
- "{{data_dir}}/logger/config"
- "/var/log/atlas/logger"
notify:
- restart logger
tags:
- logger-service
- properties
when: exec_jar

- name: set data ownership for /opt/atlas/logger
file: path=/opt/atlas/logger owner=logger group=logger recurse=true
notify:
- restart logger
tags:
- logger-service
- properties
when: exec_jar

- name: set data ownership for /var/log/atlas/logger
file: path=/var/log/atlas/logger owner=logger group=logger recurse=true
notify:
- restart logger
tags:
- logger-service
- properties
when: exec_jar
2 changes: 1 addition & 1 deletion ansible/roles/logger-service/templates/logback.xml
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
<conversionRule conversionWord="wex" converterClass="org.springframework.boot.logging.logback.WhitespaceThrowableProxyConverter" />

<variable name="appName" value="logger-service"/>
<variable name="LOG_DIR" value="/var/log/{{ tomcat | default('tomcat9')}}" />
<variable name="LOG_DIR" value="{{ jar_log_path | default('/var/log/' + tomcat ) | default('/var/log/tomcat9')}}" />

<appender name="TOMCAT_LOG" class="ch.qos.logback.core.rolling.RollingFileAppender">
<file>${LOG_DIR}/${appName}.log</file>
Expand Down
6 changes: 3 additions & 3 deletions ansible/roles/logger-service/vars/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
version: "{{ logger_version | default('LATEST') }}"
artifactId: "logger-service"
groupId: "au.org.ala"
classifier: ''
packaging: "war"
logger_war_url: "{{maven_repo_ws_url}}"
classifier: "{{ logger_classifier | default('') }}"
packaging: "{{ logger_packaging | default('war') }}"
logger_artifact_url: "{{maven_repo_ws_url}}"
content_type_options_header: "{{ logger_content_type_options_header | default(false) }}"