Skip to content

Commit

Permalink
Merge pull request #3084 from orb-community/remove-diode-backend-agent
Browse files Browse the repository at this point in the history
feat: remove diode backend and agent
  • Loading branch information
mfiedorowicz authored Aug 19, 2024
2 parents eca8480 + a790900 commit fc3d956
Show file tree
Hide file tree
Showing 24 changed files with 7 additions and 1,111 deletions.
7 changes: 2 additions & 5 deletions .github/workflows/agent.yml
Original file line number Diff line number Diff line change
Expand Up @@ -6,9 +6,6 @@ on:
pktvisor_tag:
description: 'pktvisor agent docker tag to package'
default: "develop"
diode_tag:
description: 'diode agent docker tag to package'
default: "develop"
orb_tag:
description: 'orb agent docker tag to package'
default: "develop"
Expand Down Expand Up @@ -203,9 +200,9 @@ jobs:
shell: bash
run: |
if [ "${{ github.event.inputs.pktvisor_tag }}" == "" ]; then
DIODE_TAG=${{ env.REF_TAG }} PKTVISOR_TAG=${{ env.REF_TAG }} ORB_TAG=${{ env.REF_TAG }} make agent_full
PKTVISOR_TAG=${{ env.REF_TAG }} ORB_TAG=${{ env.REF_TAG }} make agent_full
else
DIODE_TAG=${{ github.event.inputs.diode_tag }} PKTVISOR_TAG=${{ github.event.inputs.pktvisor_tag }} ORB_TAG=${{ github.event.inputs.orb_tag }} make agent_full
PKTVISOR_TAG=${{ github.event.inputs.pktvisor_tag }} ORB_TAG=${{ github.event.inputs.orb_tag }} make agent_full
fi
- name: Login to Docker Hub orbcommunity
Expand Down
2 changes: 0 additions & 2 deletions Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,6 @@ DOCKERS_DEV = $(addprefix docker_dev_,$(SERVICES))
CGO_ENABLED ?= 0
GOARCH ?= $(shell dpkg-architecture -q DEB_BUILD_ARCH)
GOOS ?= $(shell dpkg-architecture -q DEB_TARGET_ARCH_OS)
DIODE_TAG ?= develop
ORB_VERSION = $(shell cat VERSION)
COMMIT_HASH = $(shell git rev-parse --short HEAD)
OTEL_COLLECTOR_CONTRIB_VERSION ?= 0.91.0
Expand Down Expand Up @@ -243,7 +242,6 @@ agent_full:
docker build --no-cache \
--build-arg GOARCH=$(GOARCH) \
--build-arg PKTVISOR_TAG=$(PKTVISOR_TAG) \
--build-arg DIODE_TAG=$(DIODE_TAG) \
--build-arg ORB_TAG=${REF_TAG} \
--build-arg OTEL_TAG=${OTEL_COLLECTOR_CONTRIB_VERSION} \
--tag=$(ORB_DOCKERHUB_REPO)/$(DOCKER_IMAGE_NAME_PREFIX)-agent-full:$(REF_TAG) \
Expand Down
309 changes: 0 additions & 309 deletions agent/backend/diode/diode.go

This file was deleted.

Loading

0 comments on commit fc3d956

Please sign in to comment.