Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
The table of contents is too big for display.
Diff view
Diff view
  •  
  •  
  •  
The diff you're trying to view is too large. We only load the first 3000 changed files.
3 changes: 3 additions & 0 deletions .github/workflows/test-backend.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -13,6 +13,7 @@ on:
- policy-enforcer/**
- public-api/**
- runtime-monitor/**
- kube-manager/**
pull_request:
paths:
- auth-center/**
Expand All @@ -24,6 +25,7 @@ on:
- policy-enforcer/**
- public-api/**
- runtime-monitor/**
- kube-manager/**

env:
TASK_VERSION: '3.38.0'
Expand Down Expand Up @@ -52,6 +54,7 @@ jobs:
policy-enforcer: ./policy-enforcer/**
public-api: ./public-api/**
runtime-monitor: ./runtime-monitor/**
kube-manager: ./kube-manager/**

test-backend:
runs-on: ubuntu-latest
Expand Down
5 changes: 5 additions & 0 deletions Taskfile.yml
Original file line number Diff line number Diff line change
Expand Up @@ -51,6 +51,9 @@ includes:
cs-manager:
taskfile: ./cs-manager/Taskfile.yml
dir: ./cs-manager
kube-manager:
taskfile: ./kube-manager/Taskfile.yml
dir: ./kube-manager

tasks:
proto:
Expand All @@ -66,6 +69,7 @@ tasks:
- runtime-monitor
- cs-manager
- public-api
- kube-manager
task: "{{.ITEM}}:proto"

proto-clean:
Expand All @@ -87,6 +91,7 @@ tasks:
- runtime-monitor
- public-api
- cs-manager
- kube-manager
- reverse-proxy
task: "{{.ITEM}}:docker-build"

Expand Down
212 changes: 0 additions & 212 deletions docker-compose.yaml

This file was deleted.

14 changes: 14 additions & 0 deletions docker-compose.yml
Original file line number Diff line number Diff line change
Expand Up @@ -237,5 +237,19 @@ services:
networks:
- local

kube-manager:
build:
context: ./kube-manager
image: kube-manager
ports:
- "8009:8000"
- "9009:9000"
command: --postgresAddr=postgres --logLevel=INFO
depends_on:
postgres:
condition: service_healthy
networks:
- local

networks:
local:
Loading
Loading