Skip to content

Commit fa1997e

Browse files
committed
chore: Switch from Nexus to Harbor
1 parent c4eeef0 commit fa1997e

File tree

7 files changed

+10
-12
lines changed

7 files changed

+10
-12
lines changed

.github/workflows/docker.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ on:
77

88
jobs:
99
build:
10-
uses: famedly/backend-build-workflows/.github/workflows/docker-backend.yml@main
10+
uses: famedly/backend-build-workflows/.github/workflows/docker-backend.yml@v3
1111
secrets: inherit
1212
with:
1313
targets: famedly-sync-agent

.github/workflows/release.yml

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@ jobs:
2626
runner: arm-ubuntu-latest-8core
2727
asset_name: ${{ github.event.repository.name }}-linux-aarch64-latest
2828
runs-on: ${{ matrix.runner }}
29-
container: docker-oss.nexus.famedly.de/rust-container:nightly
29+
container: registry.famedly.net/docker-oss/rust-container:nightly
3030
steps:
3131
- name: Checkout code
3232
uses: actions/checkout@v4
@@ -74,7 +74,7 @@ jobs:
7474
contents: read
7575
attestations: write
7676
runs-on: ubuntu-latest
77-
container: docker-oss.nexus.famedly.de/rust-container:nightly
77+
container: registry.famedly.net/docker-oss/rust-container:nightly
7878
steps:
7979
- name: Checkout code
8080
uses: actions/checkout@v4
@@ -146,4 +146,3 @@ jobs:
146146
files: artifacts/*
147147
prerelease: "${{ contains(github.ref_name, 'rc') }}"
148148
generate_release_notes: true
149-

.github/workflows/rust-workflow.yml

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ concurrency:
1919
# Defined CI jobs.
2020
jobs:
2121
simple-checks:
22-
container: docker-oss.nexus.famedly.de/rust-container:nightly
22+
container: registry.famedly.net/docker-oss/rust-container:nightly
2323
runs-on: ubuntu-latest
2424
steps:
2525
- name: Checkout current repository
@@ -105,4 +105,3 @@ jobs:
105105
uses: codecov/test-results-action@v1
106106
with:
107107
token: ${{secrets.CODECOV_TOKEN}}
108-

Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
FROM docker-oss.nexus.famedly.de/rust-container:nightly AS builder
1+
FROM registry.famedly.net/docker-oss/rust-container:nightly AS builder
22
ARG CARGO_NET_GIT_FETCH_WITH_CLI=true
33
ARG FAMEDLY_CRATES_REGISTRY
44
ARG CARGO_HOME

README.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -114,7 +114,7 @@ itself. The binary can be executed as part of the same docker
114114
environment as `famedly-sync`:
115115

116116
```bash
117-
docker run --rm -it --network host --volume ./opt:/opt/famedly-sync docker-oss.nexus.famedly.de/famedly-sync-agent:latest /usr/local/bin/install-ids
117+
docker run --rm -it --network host --volume ./opt:/opt/famedly-sync registry.famedly.net/docker-oss/famedly-sync-agent:latest /usr/local/bin/install-ids
118118
```
119119

120120
It can also be executed with the `docker-compose.yaml` by adding
@@ -229,7 +229,7 @@ docker compose up
229229
Or alternatively, without `docker compose`:
230230

231231
```
232-
docker run --rm -it --network host --volume ./opt:/opt/famedly-sync docker-oss.nexus.famedly.de/famedly-sync-agent:latest
232+
docker run --rm -it --network host --volume ./opt:/opt/famedly-sync registry.famedly.net/docker-oss/famedly-sync-agent:latest
233233
```
234234

235235
> [!NOTE]
@@ -244,7 +244,7 @@ to deploy this tool as a CronJob on a Kubernetes cluster.
244244
kubectl create -f ldap-sync-deployment.yaml
245245
```
246246

247-
It will run `docker-oss.nexus.famedly.de/famedly-sync-agent:v0.4.0` once per day
247+
It will run `registry.famedly.net/docker-oss/famedly-sync-agent:v0.4.0` once per day
248248
at 00:00 in the namespace `ldap-sync`. It requires a ConfigMap named `famedly-sync`
249249
to be present in the `ldap-sync` namespace. The ConfigMap can be created using
250250

docker-compose.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
services:
22
famedly-sync-agent:
3-
image: docker-oss.nexus.famedly.de/famedly-sync-agent:latest
3+
image: registry.famedly.net/docker-oss/famedly-sync-agent:latest
44
volumes:
55
- type: bind
66
source: ./opt

ldap-sync-cronjob.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ spec:
1111
spec:
1212
containers:
1313
- name: ldap-sync
14-
image: docker-oss.nexus.famedly.de/famedly-sync-agent:v0.4.0
14+
image: registry.famedly.net/docker-oss/famedly-sync-agent:v0.4.0
1515
imagePullPolicy: IfNotPresent
1616
volumeMounts:
1717
- mountPath: /opt/famedly-sync/

0 commit comments

Comments
 (0)