diff options
author | 2025-01-30 19:28:37 +0530 | |
---|---|---|
committer | 2025-01-30 19:28:37 +0530 | |
commit | d41e1b68b6be32ee367bdadd37955e91fba21303 (patch) | |
tree | 3faf15cbbc209a6f381c328c5baeaf684122d66b /integration-tests | |
parent | 92c86bb2b390a9d74f84d53b3edeccd239f3f0f5 (diff) |
Chef removal changes for asdc_tool
- Removal of Chef recipes in the module.
- Introduction of shell scripts in the module to replace some recipes.
- Generation of module configuration using Charts.
Issue-ID: SDC-4699
Change-Id: I3bb3b275f01cb35fb25ada0df3f9c65b86bac106
Signed-off-by: Jinendra.Lodha <jinendra.lodha@accenture.com>
Diffstat (limited to 'integration-tests')
-rw-r--r-- | integration-tests/integration-tests-init/Dockerfile | 2 | ||||
-rw-r--r-- | integration-tests/pom.xml | 28 |
2 files changed, 16 insertions, 14 deletions
diff --git a/integration-tests/integration-tests-init/Dockerfile b/integration-tests/integration-tests-init/Dockerfile index d3ba469c91..11a80cf556 100644 --- a/integration-tests/integration-tests-init/Dockerfile +++ b/integration-tests/integration-tests-init/Dockerfile @@ -19,7 +19,7 @@ RUN apk update && \ build-base \ curl-dev && \ # needed libcurl to install correctly \ - python -m pip install --upgrade pip \ + python -m pip install --upgrade pip && \ pip install 'pycurl==7.44.1' && \ set -ex && \ gem install --no-update-sources \ diff --git a/integration-tests/pom.xml b/integration-tests/pom.xml index c5130ce16f..0e16b3b705 100644 --- a/integration-tests/pom.xml +++ b/integration-tests/pom.xml @@ -425,6 +425,21 @@ limitations under the License. <version>${functionaljava.version}</version> <scope>test</scope> </dependency> + <dependency> + <groupId>org.springframework</groupId> + <artifactId>spring-context</artifactId> + <version>${spring.version}</version> + <exclusions> + <exclusion> + <groupId>org.springframework</groupId> + <artifactId>spring-expression</artifactId> + </exclusion> + <exclusion> + <groupId>org.springframework</groupId> + <artifactId>spring-core</artifactId> + </exclusion> + </exclusions> + </dependency> </dependencies> <build> @@ -837,12 +852,6 @@ limitations under the License. <HEAP_NEWSIZE>512M</HEAP_NEWSIZE> </env> <hostname>sdc-cs</hostname> - <volumes> - <bind> - <volume>${it.chef.config}:/root/chef-solo/environments - </volume> - </bind> - </volumes> <ulimits> <ulimit> <name>memlock</name> @@ -890,13 +899,6 @@ limitations under the License. <ENVNAME>${it.env.name}</ENVNAME> </env> <hostname>sdc-cs-init</hostname> - <volumes> - <bind> - <volume>${it.chef.config}:/home/sdc/chef-solo/environments - </volume> - - </bind> - </volumes> <wait> <time>400000</time> <log>SdcSchemaFileImport successfully completed</log> |