Skip to content

Commit b36aa3a

Browse files
committed
chore: update Docker image references to openprojectx/kerby-kdc across project
- Replaced all occurrences of `apache/kerby-kdc` with `openprojectx/kerby-kdc` in configuration, documentation, and code. - Added `krb5.conf` for KDC realm configuration.
1 parent f5acb04 commit b36aa3a

7 files changed

Lines changed: 22 additions & 7 deletions

File tree

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -71,7 +71,7 @@ test coverage.
7171
Build the image from the current checkout:
7272

7373
```bash
74-
mvn -Pdist,docker -DskipTests -Ddocker.image.name=apache/kerby-kdc \
74+
mvn -Pdist,docker -DskipTests -Ddocker.image.name=openprojectx/kerby-kdc \
7575
-Ddocker.image.tag.sha=test -pl kerby-dist/docker -am package
7676
```
7777

kerby-dist/docker/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ checkout. Build from the repository root with `-am` so Maven builds the local
66

77
```bash
88
mvn -Dmaven.repo.local=/home/coder/.m2/repository -Pdist,docker -DskipTests \
9-
-Ddocker.image.name=apache/kerby-kdc \
9+
-Ddocker.image.name=openprojectx/kerby-kdc \
1010
-Ddocker.image.tag.sha=test \
1111
-pl kerby-dist/docker -am package
1212
```

kerby-dist/docker/docker-compose.yml

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

1717
services:
1818
kerby-kdc:
19-
image: apache/kerby-kdc:latest
19+
image: openprojectx/kerby-kdc:latest
2020
container_name: kerby-kdc
2121
ports:
2222
- "88:88/tcp"

kerby-dist/docker/krb5.conf

Lines changed: 15 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,15 @@
1+
[libdefaults]
2+
default_realm = EXAMPLE.COM
3+
dns_lookup_kdc = false
4+
dns_lookup_realm = false
5+
rdns = false
6+
udp_preference_limit = 1
7+
8+
[realms]
9+
EXAMPLE.COM = {
10+
kdc = 127.0.0.1:88
11+
}
12+
13+
[domain_realm]
14+
.example.com = EXAMPLE.COM
15+
example.com = EXAMPLE.COM

kerby-dist/docker/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@
2727
<packaging>pom</packaging>
2828

2929
<properties>
30-
<docker.image.name>apache/kerby-kdc</docker.image.name>
30+
<docker.image.name>openprojectx/kerby-kdc</docker.image.name>
3131
<docker.image.tag.latest>latest</docker.image.tag.latest>
3232
<docker.image.tag.sha>dev</docker.image.tag.sha>
3333
<docker.context.directory>${project.build.directory}/docker-context</docker.context.directory>

kerby-testcontainers/README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ Build the image locally:
77

88
```bash
99
mvn -Dmaven.repo.local=/home/coder/.m2/repository -Pdist,docker -DskipTests \
10-
-Ddocker.image.name=apache/kerby-kdc \
10+
-Ddocker.image.name=openprojectx/kerby-kdc \
1111
-Ddocker.image.tag.sha=test \
1212
-pl kerby-dist/docker -am package
1313
```
@@ -24,7 +24,7 @@ Run the end-to-end Testcontainers test:
2424
mvn -Dmaven.repo.local=/home/coder/.m2/repository -pl kerby-testcontainers -am \
2525
-Dtest=KerbyKdcContainerE2ETest \
2626
-Dsurefire.failIfNoSpecifiedTests=false \
27-
-Dkerby.testcontainers.image=apache/kerby-kdc:latest \
27+
-Dkerby.testcontainers.image=openprojectx/kerby-kdc:latest \
2828
test
2929
```
3030

kerby-testcontainers/src/main/java/org/apache/kerby/testcontainers/KerbyKdcContainer.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,7 @@
3232
*/
3333
public class KerbyKdcContainer extends GenericContainer<KerbyKdcContainer> {
3434
public static final DockerImageName DEFAULT_IMAGE_NAME =
35-
DockerImageName.parse("apache/kerby-kdc:latest");
35+
DockerImageName.parse("openprojectx/kerby-kdc:latest");
3636
public static final int KDC_PORT = 88;
3737
public static final String DEFAULT_REALM = "EXAMPLE.COM";
3838
public static final String DEFAULT_CLIENT_PRINCIPAL = "client";

0 commit comments

Comments
 (0)