-
Notifications
You must be signed in to change notification settings - Fork 15
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #169 from personium/develop
Release v2.1.0
- Loading branch information
Showing
28 changed files
with
249 additions
and
80 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 1,12 @@ | ||
ansible.log | ||
|
||
personium_regression.sh | ||
|
||
# binary files | ||
resource/ap/opt/tomcat/webapps/personium-core.war | ||
resource/ap/opt/tomcat/webapps/personium-engine.war | ||
|
||
# certifications | ||
resource/ap/opt/x509/unit-self-sign.crt | ||
resource/ap/opt/x509/unit.csr | ||
resource/ap/opt/x509/unit.key |
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,13 1,13 @@ | ||
# Copyright FUJITSU LIMITED 2015-2017. | ||
|
||
- include: ./tasks/bastion/git_clone.yml | ||
- include: ./tasks/bastion/init_maven.yml | ||
- include: ./tasks/bastion/mvn_package.yml | ||
vars: | ||
build_mod: core | ||
- include: ./tasks/bastion/download_personium.yml | ||
# - include: ./tasks/bastion/git_clone.yml | ||
# - include: ./tasks/bastion/init_maven.yml | ||
# - include: ./tasks/bastion/mvn_package.yml | ||
# vars: | ||
# build_mod: core | ||
|
||
- include: ./tasks/bastion/mvn_package.yml | ||
vars: | ||
build_mod: engine | ||
# - include: ./tasks/bastion/mvn_package.yml | ||
# vars: | ||
# build_mod: engine | ||
- include: ./tasks/bastion/init_personium_regression.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
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 |
---|---|---|
|
@@ -7,5 7,3 @@ version: 6.6.1 | |
|
||
# elasticsearch heapsize | ||
es_heapsize: 3328 | ||
|
||
|
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 |
---|---|---|
|
@@ -2,5 2,5 @@ | |
|
||
tag_ServerType: web | ||
|
||
nginx_version: 1.14.2 | ||
nginx_version: 1.23.2 | ||
nginx_hm_version: 0.33 |
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 |
---|---|---|
@@ -0,0 1,16 @@ | ||
# Copyright FUJITSU LIMITED 2015-2022. | ||
--- | ||
|
||
- name: Download personium war from github | ||
ansible.builtin.get_url: | ||
url: https://github.com/personium/personium-core/releases/download/v{{ personium_core_version }}/personium-core-{{ personium_core_version }}.war | ||
dest: ./resource/ap/opt/tomcat/webapps/personium-core.war | ||
checksum: "sha256:{{ personium_core_sha256 }}" | ||
mode: 0644 | ||
|
||
- name: Download personium war from github | ||
ansible.builtin.get_url: | ||
url: https://github.com/personium/personium-engine/releases/download/v{{ personium_engine_version }}/personium-engine-{{ personium_engine_version }}.war | ||
dest: ./resource/ap/opt/tomcat/webapps/personium-engine.war | ||
checksum: "sha256:{{ personium_engine_sha256 }}" | ||
mode: 0644 |
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,19 1,25 @@ | ||
# Copyright FUJITSU LIMITED 2015-2019. | ||
# Copyright FUJITSU LIMITED 2015-2022. | ||
|
||
- name: Download JDK | ||
command: 'wget -q -O /usr/src/jdk8u192-b12.tar.gz https://github.com/AdoptOpenJDK/openjdk8-binaries/releases/download/jdk8u192-b12/OpenJDK8U-jdk_x64_linux_hotspot_8u192b12.tar.gz creates=/usr/src/jdk8u192-b12.tar.gz' | ||
ansible.builtin.get_url: | ||
url: https://github.com/adoptium/temurin17-binaries/releases/download/jdk-17.0.4.1+1/OpenJDK17U-jdk_x64_linux_hotspot_17.0.4.1_1.tar.gz | ||
dest: /usr/src/jdk-17.0.4.1 1.tar.gz | ||
mode: 0660 | ||
|
||
- name: Expand JDK | ||
command: "tar -xzf /usr/src/jdk8u192-b12.tar.gz -C /usr/src creates=/usr/src/jdk8u192-b12" | ||
ansible.builtin.unarchive: | ||
src: /usr/src/jdk-17.0.4.1 1.tar.gz | ||
dest: /usr/src | ||
remote_src: true | ||
|
||
- name: Change owner JDK | ||
file: "state=directory path=/usr/src/jdk8u192-b12 owner=root group=root recurse=yes" | ||
file: "state=directory path=/usr/src/jdk-17.0.4.1 1 owner=root group=root recurse=yes" | ||
|
||
- name: Deploy JDK | ||
command: "mv /usr/src/jdk8u192-b12 /opt creates=/opt/jdk8u192-b12" | ||
command: "mv /usr/src/jdk-17.0.4.1 1 /opt creates=/opt/jdk-17.0.4.1 1" | ||
|
||
- name: Create smlink /opt/jdk | ||
file: "state=link src=/opt/jdk8u192-b12 dest=/opt/jdk" | ||
file: "state=link src=/opt/jdk-17.0.4.1 1 dest=/opt/jdk" | ||
|
||
- name: Add JDK to environment variable | ||
copy: src=./resource/common/etc/bashrc dest=/etc/bashrc owner=root group=root mode=0644 |
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 |
---|---|---|
@@ -0,0 1,102 @@ | ||
## 2.1.0 | ||
|
||
Compatible Personium version: 1.8.0 | ||
|
||
Enhancement: | ||
|
||
- Update Java version to 17. #161 | ||
- Update middlewares. #167 | ||
|
||
MISC: | ||
|
||
- Downloading war files from GitHub releases. #166 | ||
- Downloading extension jar files from GitHub releases. #163 | ||
|
||
See: https://github.com/personium/ansible/milestone/6?closed=1 | ||
|
||
## 2.0.11 | ||
|
||
See: https://github.com/personium/ansible/milestone/8?closed=1 | ||
|
||
## 2.0.10 | ||
|
||
See: https://github.com/personium/ansible/milestone/5?closed=1 | ||
|
||
## 2.0.9 | ||
|
||
See: https://github.com/personium/ansible/milestone/4?closed=1 | ||
|
||
## 2.0.8a | ||
|
||
Bug fixes: | ||
|
||
- Fix web_private_ip. #107 | ||
|
||
## 2.0.8 | ||
|
||
Enhancement: | ||
|
||
- Fix static_inventory/hosts uses many duplicated variables #99 | ||
- Separation of bastion and web #97 | ||
- X-Personium-RequestKey header output in nginx logs #89 | ||
- Upgrade middlewares #103 | ||
|
||
BugFixes: | ||
|
||
- SSH user is hard-coded. #98 | ||
|
||
## 2.0.7 | ||
|
||
Support percell fqdn | ||
Corresponded to ElasticSearch 6.6.1 | ||
|
||
## 2.0.6 | ||
|
||
Corresponded to ElasticSearch 5.6.14 | ||
|
||
## 2.0.5 | ||
|
||
Corresponded to OpenJDK 8. | ||
Corresponded to tomcat 9.c | ||
|
||
## 2.0.4 | ||
|
||
Merge pull request #43 from naoya-mokudai/develop | ||
|
||
Fix URL mistake | ||
|
||
## 2.0.3 | ||
|
||
Merge pull request #33 from personium/2.0.3_dev | ||
|
||
2.0.3 release | ||
|
||
## 2.0.2 | ||
|
||
Release v2.0.2 | ||
|
||
## 2.0.1 | ||
|
||
Changing the specification key of host file. | ||
|
||
This ansible has already been confirmed with Personium v1.5.3. | ||
|
||
## 2.0.0 | ||
|
||
ansible for Personium v1.5.2 or later. | ||
|
||
## 1.5.1 | ||
|
||
ansible for Personium v1.5.1 #13 | ||
|
||
## 1.5.0 | ||
|
||
ansible for Personium v1.5.0 #11 | ||
|
||
## 1.4.5 | ||
|
||
Core and Engine version used for ansible are fixed to 1.4.5. | ||
|
||
## 1.4.3 | ||
|
||
Optimized for Personium v1.4.3. |
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,12 @@ | ||
ansible.log | ||
|
||
personium_regression.sh | ||
|
||
# binary files | ||
resource/ap/opt/tomcat/webapps/personium-core.war | ||
resource/ap/opt/tomcat/webapps/personium-engine.war | ||
|
||
# certifications | ||
resource/ap/opt/x509/unit-self-sign.crt | ||
resource/ap/opt/x509/unit.csr | ||
resource/ap/opt/x509/unit.key |
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,12 1,14 @@ | ||
# Copyright FUJITSU LIMITED 2015-2017. | ||
|
||
- include: ./tasks/bastion/git_clone.yml | ||
- include: ./tasks/bastion/init_maven.yml | ||
- include: ./tasks/bastion/download_personium.yml | ||
|
||
- include: ./tasks/bastion/mvn_package.yml | ||
vars: | ||
build_mod: core | ||
# - include: ./tasks/bastion/git_clone.yml | ||
# - include: ./tasks/bastion/init_maven.yml | ||
|
||
- include: ./tasks/bastion/mvn_package.yml | ||
vars: | ||
build_mod: engine | ||
# - include: ./tasks/bastion/mvn_package.yml | ||
# vars: | ||
# build_mod: core | ||
|
||
# - include: ./tasks/bastion/mvn_package.yml | ||
# vars: | ||
# build_mod: engine |
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.