diff options
author | Andrew Gauld <agauld@att.com> | 2020-03-27 15:30:36 +0000 |
---|---|---|
committer | Andrew Gauld <agauld@att.com> | 2020-03-27 15:42:57 +0000 |
commit | f6a8a8322d09d5f6012167d298dea6f0471cb82c (patch) | |
tree | 0b54d532635e0657db3fc05cb46e2529b92d1ee2 /mod/genprocessor | |
parent | 715442db4147980f3fb17a240a396a8e826f0f04 (diff) |
Images updated and the new versions are:
adapter.acumos:1.0.2
mod.distributorapi:1.0.1
mod.onboardingapi:2.12.1
mod.designtool-web:1.0.2
mod.genprocessor-job:1.0.1
mod.genprocessor-http:1.0.1
mod.runtime-web:1.0.2
Note: image names all start with "onap/org.onap.dcaegen2.platform."
designtool-web was already running as a non-root user. The others have been
changed to create user "dcaemod" and run as that user.
The listen port numbers on mod.distributorapi, mod.onboardingapi, and
mod.genprocessor-http are changed from 80 to 8080.
URLs in designtool-web, distributorapi, and genprocessor-job are adjusted
to reflect the new port numbers.
Change-Id: I510122952666c21cb92f3f64552e99d50af7c355
Issue-ID: DCAEGEN2-2170
Signed-off-by: Andrew Gauld <agauld@att.com>
Diffstat (limited to 'mod/genprocessor')
-rw-r--r-- | mod/genprocessor/nginx.conf | 2 | ||||
-rw-r--r-- | mod/genprocessor/pom.xml | 12 |
2 files changed, 11 insertions, 3 deletions
diff --git a/mod/genprocessor/nginx.conf b/mod/genprocessor/nginx.conf index bd53c07..b6bdb24 100644 --- a/mod/genprocessor/nginx.conf +++ b/mod/genprocessor/nginx.conf @@ -1,5 +1,5 @@ server { - listen 80; + listen 8080; server_name localhost; location / { diff --git a/mod/genprocessor/pom.xml b/mod/genprocessor/pom.xml index 6afc9de..ccc1ce3 100644 --- a/mod/genprocessor/pom.xml +++ b/mod/genprocessor/pom.xml @@ -26,7 +26,7 @@ limitations under the License. </parent> <groupId>org.onap.dcaegen2.platform.mod</groupId> <artifactId>genprocessor</artifactId> - <version>1.0.0</version> + <version>1.0.1-SNAPSHOT</version> <name>dcaegen2-platform-mod-genprocessor</name> <properties> <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding> @@ -139,6 +139,10 @@ limitations under the License. </files> </inline> </assembly> + <runCmds> + <runCmd>groupadd -g 1000 dcaemod && useradd --shell /bin/bash -u 1000 -g 1000 -m dcaemod</runCmd> + </runCmds> + <user>dcaemod</user> <entryPoint> <exec> <arg>nginx</arg> @@ -161,12 +165,16 @@ limitations under the License. <assembly> <descriptorRef>artifact-with-dependencies</descriptorRef> </assembly> + <runCmds> + <runCmd>groupadd -g 1000 dcaemod && useradd --shell /bin/bash -u 1000 -g 1000 -m dcaemod && mkdir -p /work && chown dcaemod:dcaemod /work</runCmd> + </runCmds> <workdir>/maven</workdir> <env> <GENPROC_WORKING_DIR>/work</GENPROC_WORKING_DIR> - <GENPROC_ONBOARDING_API_HOST>http://onboarding-api/onboarding</GENPROC_ONBOARDING_API_HOST> + <GENPROC_ONBOARDING_API_HOST>http://onboarding-api:8080/onboarding</GENPROC_ONBOARDING_API_HOST> <GENPROC_SLEEP_SEC>10</GENPROC_SLEEP_SEC> </env> + <user>dcaemod</user> <entryPoint> <exec> <arg>java</arg> |