diff --git a/CHANGELOG.md b/CHANGELOG.md index 97457718..d16b5a51 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -7,6 +7,8 @@ The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/), ## [Unreleased] - Update in installation steps - Updated notice for docker in `README.md` + - Veracode workflow fix + - Fixed linting of charts ## [1.5.1] - 2023-11-17 ### Changed diff --git a/charts/orchestrator/templates/tests/test-connection.yaml b/charts/orchestrator/templates/tests/test-connection.yaml deleted file mode 100644 index 6269ff09..00000000 --- a/charts/orchestrator/templates/tests/test-connection.yaml +++ /dev/null @@ -1,35 +0,0 @@ -#****************************************************************************** -# Copyright (c) 2022, 2023 T-Systems International GmbH -# Copyright (c) 2022, 2023 Contributors to the Eclipse Foundation -# -# See the NOTICE file(s) distributed with this work for additional -# information regarding copyright ownership. -# -# This program and the accompanying materials are made available under the -# terms of the Apache License, Version 2.0 which is available at -# https://www.apache.org/licenses/LICENSE-2.0. -# -# Unless required by applicable law or agreed to in writing, software -# distributed under the License is distributed on an "AS IS" BASIS, WITHOUT -# WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the -# License for the specific language governing permissions and limitations -# under the License. -# -# SPDX-License-Identifier: Apache-2.0 -#******************************************************************************* - -apiVersion: v1 -kind: Pod -metadata: - name: "{{ include "managed-service-orchestrator.fullname" . }}-test-connection" - labels: - {{- include "managed-service-orchestrator.labels" . | nindent 4 }} - annotations: - "helm.sh/hook": test -spec: - containers: - - name: wget - image: busybox - command: ['wget'] - args: ['{{ include "managed-service-orchestrator.fullname" . }}:{{ .Values.service.port }}'] - restartPolicy: Never diff --git a/src/test/java/org/eclipse/tractusx/autosetup/manager/VaultManagerTest.java b/src/test/java/org/eclipse/tractusx/autosetup/manager/VaultManagerTest.java index 3cdcc065..6c35b9c5 100644 --- a/src/test/java/org/eclipse/tractusx/autosetup/manager/VaultManagerTest.java +++ b/src/test/java/org/eclipse/tractusx/autosetup/manager/VaultManagerTest.java @@ -56,9 +56,6 @@ class VaultManagerTest { @MockBean private AutoSetupTriggerManager autoSetupTriggerManager; - @MockBean - private OpenSSLClientManager openSSLClientManager; - @Autowired private VaultManager vaultManager;