Skip to content

Commit c417c48

Browse files
committed
[GITOPS-9258]: Configurable TLS server settings for argocd and argocd-agent components
Signed-off-by: akhil nittala <nakhil@redhat.com>
1 parent 6c6d532 commit c417c48

4 files changed

Lines changed: 4 additions & 4 deletions

File tree

Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -31,4 +31,4 @@ COPY build/redis /var/lib/redis
3131

3232
USER 65532:65532
3333

34-
ENTRYPOINT ["/usr/local/bin/manager"]
34+
ENTRYPOINT ["/usr/local/bin/manager"]

Makefile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -184,7 +184,7 @@ run: manifests generate fmt vet ## Run a controller from your host.
184184

185185
.PHONY: docker-build
186186
docker-build: test ## Build container image with the manager.
187-
$(CONTAINER_RUNTIME) build --platform=linux/amd64 -t ${IMG} .
187+
$(CONTAINER_RUNTIME) build -t ${IMG} .
188188

189189
.PHONY: docker-push
190190
docker-push: ## Push container image with the manager.

argocd-operator

Lines changed: 0 additions & 1 deletion
This file was deleted.

test/openshift/e2e/ginkgo/parallel/1-121_validate_image_updater_test.go

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -166,9 +166,10 @@ var _ = Describe("GitOps Operator Parallel E2E Tests", func() {
166166
imageUpdater = &imageUpdaterApi.ImageUpdater{
167167
ObjectMeta: metav1.ObjectMeta{
168168
Name: "image-updater",
169-
Namespace: namespace,
169+
Namespace: ns.Name,
170170
},
171171
Spec: imageUpdaterApi.ImageUpdaterSpec{
172+
Namespace: &namespace,
172173
ApplicationRefs: []imageUpdaterApi.ApplicationRef{
173174
{
174175
NamePattern: "app*",

0 commit comments

Comments
 (0)