Skip to content
This repository was archived by the owner on Dec 17, 2025. It is now read-only.
Open
Show file tree
Hide file tree
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Next Next commit
prepare repo for migration to ArgoCD repo
Signed-off-by: Leonardo Luz Almeida <[email protected]>
  • Loading branch information
leoluz committed Sep 23, 2025
commit bcc0243f1ee93edaa2a427e6aed6b69b4457678b
10 changes: 0 additions & 10 deletions .github/CODEOWNERS

This file was deleted.

26 changes: 0 additions & 26 deletions .github/dependabot.yml

This file was deleted.

30 changes: 0 additions & 30 deletions .github/workflows/ci.yaml

This file was deleted.

7 changes: 0 additions & 7 deletions .gitignore

This file was deleted.

129 changes: 0 additions & 129 deletions .golangci.yaml

This file was deleted.

6 changes: 0 additions & 6 deletions codecov.yml

This file was deleted.

File renamed without changes.
File renamed without changes.
32 changes: 32 additions & 0 deletions gitops-engine/Makefile
Original file line number Diff line number Diff line change
@@ -0,0 +1,32 @@
# docker image publishing options
DOCKER_PUSH?=false
IMAGE_NAMESPACE?=
IMAGE_TAG?=latest
ifdef IMAGE_NAMESPACE
IMAGE_PREFIX=${IMAGE_NAMESPACE}/
endif

.PHONY: generate
generate: agent-manifests

.PHONY: test
test:
go test -race ./... -coverprofile=coverage.out

.PHONY: lint
lint:
golangci-lint run

.PHONY: agent-image
agent-image:
docker build -t $(IMAGE_PREFIX)gitops-agent . -f Dockerfile
@if [ "$(DOCKER_PUSH)" = "true" ] ; then docker push $(IMAGE_PREFIX)gitops-agent:$(IMAGE_TAG) ; fi

.PHONY: agent-manifests
agent-manifests:
kustomize build ./agent/manifests/cluster-install > ./agent/manifests/install.yaml
kustomize build ./agent/manifests/namespace-install > ./agent/manifests/install-namespaced.yaml

.PHONY: generate-mocks
generate-mocks:
go generate -x -v "github.com/argoproj/gitops-engine/pkg/utils/tracing/tracer_testing"
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
2 changes: 0 additions & 2 deletions sonar-project.properties

This file was deleted.