Skip to content

Commit 66113e2

Browse files
committed
chore: update links after moving to new repo
1 parent 147f15d commit 66113e2

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

43 files changed

+97
-104
lines changed

.github/workflows/charts.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -55,7 +55,7 @@ jobs:
5555
5656
set +e
5757
58-
IMAGE_EXIST=$(sudo docker manifest inspect ghcr.io/devopstoday11/tarian-server:$APP_VERSION_TAG > /dev/null 2>&1)$?
58+
IMAGE_EXIST=$(sudo docker manifest inspect ghcr.io/kube-tarian/tarian-server:$APP_VERSION_TAG > /dev/null 2>&1)$?
5959
if [ $IMAGE_EXIST -gt 0 ]; then
6060
CONDITIONAL_SERVER_IMAGE_TAG="--set server.image.tag=latest"
6161
CONDITIONAL_CLUSTER_AGENT_IMAGE_TAG="--set clusterAgent.image.tag=latest --set webhook.podAgentContainerImage.tag=latest"

PROJECT

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,5 +2,5 @@ domain: k8s.tarian.dev
22
layout:
33
- go.kubebuilder.io/v3
44
projectName: tarian
5-
repo: github.com/devopstoday11/tarian
5+
repo: github.com/kube-tarian/tarian
66
version: "3"

README.md

Lines changed: 9 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -7,8 +7,8 @@
77

88
#
99

10-
[![Build status](https://img.shields.io/github/workflow/status/devopstoday11/tarian/CI?style=flat)](https://github.com/devopstoday11/tarian/actions)
11-
[![Go Report Card](https://goreportcard.com/badge/github.com/devopstoday11/tarian)](https://goreportcard.com/report/github.com/devopstoday11/tarian)
10+
[![Build status](https://img.shields.io/github/workflow/status/kube-tarian/tarian/CI?style=flat)](https://github.com/kube-tarian/tarian/actions)
11+
[![Go Report Card](https://goreportcard.com/badge/github.com/kube-tarian/tarian)](https://goreportcard.com/report/github.com/kube-tarian/tarian)
1212

1313
#
1414

@@ -34,7 +34,7 @@ Why another new security tool when there are many tools available already, like
3434
#### Architecture diagram
3535
> I will finalize the design diagram soon once I finish talking to some security experts (I already talked to few, and have few more discussions pending).
3636
37-
![Arch. Diagram](https://github.com/devopstoday11/tarian/blob/5eeed9a0bd5875e6cee423d2d12161a3f7d2d84c/Kube-Tarian.svg)
37+
![Arch. Diagram](https://github.com/kube-tarian/tarian/blob/5eeed9a0bd5875e6cee423d2d12161a3f7d2d84c/Kube-Tarian.svg)
3838

3939
#
4040

@@ -58,7 +58,7 @@ helm install tarian-postgresql bitnami/postgresql -n tarian-system \
5858
3. Install tarian
5959

6060
```bash
61-
helm repo add tarian https://devopstoday11.github.io/tarian
61+
helm repo add tarian https://kube-tarian.github.io/tarian
6262
helm repo update
6363

6464
helm install tarian-server tarian/tarian-server --devel -n tarian-system
@@ -80,14 +80,14 @@ kubectl exec -ti deploy/tarian-server -n tarian-system -- ./tarian-server db mig
8080
## Configuration
8181

8282
See helm chart values for
83-
- [tarian-server](https://github.com/devopstoday11/tarian/blob/main/charts/tarian-server/values.yaml)
84-
- [tarian-cluster-agent](https://github.com/devopstoday11/tarian/blob/main/charts/tarian-cluster-agent/values.yaml)
83+
- [tarian-server](https://github.com/kube-tarian/tarian/blob/main/charts/tarian-server/values.yaml)
84+
- [tarian-cluster-agent](https://github.com/kube-tarian/tarian/blob/main/charts/tarian-cluster-agent/values.yaml)
8585

8686
## Usage
8787

8888
### Use tarianctl to control tarian-server
8989

90-
1. Download from Github [release page](https://github.com/devopstoday11/tarian/releases/download/v0.0.3-alpha3/tarian_0.0.3-alpha3_linux_amd64.tar.gz)
90+
1. Download from Github [release page](https://github.com/kube-tarian/tarian/releases/download/v0.0.3-alpha3/tarian_0.0.3-alpha3_linux_amd64.tar.gz)
9191
2. Extract the file and copy tarianctl to your PATH directory
9292
3. Expose tarian-server to your machine, through Ingress or port-forward. For this example, we'll use port-forward:
9393

@@ -149,8 +149,8 @@ accessible with `tarianctl get events`.
149149
### Demo: Try a pod that violates the constraints
150150

151151
```bash
152-
kubectl apply -f https://raw.githubusercontent.com/devopstoday11/tarian/main/dev/config/monitored-pod/configmap.yaml
153-
kubectl apply -f https://raw.githubusercontent.com/devopstoday11/tarian/main/dev/config/monitored-pod/pod.yaml
152+
kubectl apply -f https://raw.githubusercontent.com/kube-tarian/tarian/main/dev/config/monitored-pod/configmap.yaml
153+
kubectl apply -f https://raw.githubusercontent.com/kube-tarian/tarian/main/dev/config/monitored-pod/pod.yaml
154154
155155
# wait for it to become ready
156156
kubectl wait --for=condition=ready pod nginx

charts/tarian-cluster-agent/Chart.yaml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -21,9 +21,9 @@ keywords:
2121
- tarian
2222
- antivirus-software
2323
- kube-tarian
24-
home: https://github.com/devopstoday11/tarian
24+
home: https://github.com/kube-tarian/tarian
2525
sources:
26-
- https://github.com/devopstoday11/tarian
26+
- https://github.com/kube-tarian/tarian
2727
maintainers:
2828
- name: devopstoday11
2929
- name: andylibrian

charts/tarian-cluster-agent/values.yaml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ clusterAgent:
33
encoding: json
44
level: info
55
image:
6-
name: ghcr.io/devopstoday11/tarian-cluster-agent
6+
name: ghcr.io/kube-tarian/tarian-cluster-agent
77
# empty = default to app version
88
tag:
99
serverAddress: tarian-server:80
@@ -18,6 +18,6 @@ clusterAgent:
1818
webhook:
1919
failurePolicy: Ignore
2020
podAgentContainerImage:
21-
name: ghcr.io/devopstoday11/tarian-pod-agent
21+
name: ghcr.io/kube-tarian/tarian-pod-agent
2222
# empty = default to app version
2323
tag:

charts/tarian-server/Chart.yaml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -21,9 +21,9 @@ keywords:
2121
- tarian
2222
- antivirus-software
2323
- kube-tarian
24-
home: https://github.com/devopstoday11/tarian
24+
home: https://github.com/kube-tarian/tarian
2525
sources:
26-
- https://github.com/devopstoday11/tarian
26+
- https://github.com/kube-tarian/tarian
2727
maintainers:
2828
- name: devopstoday11
2929
- name: andylibrian

charts/tarian-server/values.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ server:
33
encoding: json
44
level: info
55
image:
6-
name: ghcr.io/devopstoday11/tarian-server
6+
name: ghcr.io/kube-tarian/tarian-server
77
# empty = default to app version
88
tag:
99
alert:

cmd/tarian-cluster-agent/tarian-cluster-agent.go

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -10,10 +10,10 @@ import (
1010
"os/signal"
1111
"syscall"
1212

13-
"github.com/devopstoday11/tarian/pkg/clusteragent"
14-
"github.com/devopstoday11/tarian/pkg/clusteragent/webhookserver"
15-
"github.com/devopstoday11/tarian/pkg/logger"
1613
"github.com/go-logr/zapr"
14+
"github.com/kube-tarian/tarian/pkg/clusteragent"
15+
"github.com/kube-tarian/tarian/pkg/clusteragent/webhookserver"
16+
"github.com/kube-tarian/tarian/pkg/logger"
1717
cli "github.com/urfave/cli/v2"
1818
"go.uber.org/zap"
1919
"google.golang.org/grpc"

cmd/tarian-pod-agent/tarian-pod-agent.go

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -9,9 +9,9 @@ import (
99
"syscall"
1010
"time"
1111

12-
"github.com/devopstoday11/tarian/pkg/logger"
13-
"github.com/devopstoday11/tarian/pkg/podagent"
14-
"github.com/devopstoday11/tarian/pkg/tarianpb"
12+
"github.com/kube-tarian/tarian/pkg/logger"
13+
"github.com/kube-tarian/tarian/pkg/podagent"
14+
"github.com/kube-tarian/tarian/pkg/tarianpb"
1515
cli "github.com/urfave/cli/v2"
1616
)
1717

cmd/tarian-server/tarian-server.go

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -8,10 +8,10 @@ import (
88
"syscall"
99
"time"
1010

11-
"github.com/devopstoday11/tarian/pkg/logger"
12-
"github.com/devopstoday11/tarian/pkg/server"
13-
"github.com/devopstoday11/tarian/pkg/server/dbstore"
14-
"github.com/devopstoday11/tarian/pkg/tarianpb"
11+
"github.com/kube-tarian/tarian/pkg/logger"
12+
"github.com/kube-tarian/tarian/pkg/server"
13+
"github.com/kube-tarian/tarian/pkg/server/dbstore"
14+
"github.com/kube-tarian/tarian/pkg/tarianpb"
1515
cli "github.com/urfave/cli/v2"
1616

1717
"github.com/kelseyhightower/envconfig"

0 commit comments

Comments
 (0)