Skip to content

Commit 4d9b86f

Browse files
Merge pull request #258 from vitalykorolev/MLE-14797_migrate-docker-repo
MLE-14712 update docker repo
2 parents 1a1ebae + 190d4b8 commit 4d9b86f

22 files changed

+54
-38
lines changed

README.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -46,15 +46,15 @@ Refer to the official Kubernetes documentation for detailed steps on how to [cre
4646

4747
4. Create a `values.yaml` file to customize the settings. Specify the number of pods (one MarkLogic host in this case), add the secret name for the admin credentials (if not using the automatically generated one), and specify the resources that should be allocated to each MarkLiogic pod.
4848

49-
Note: Please ensure to use the latest MarkLogic Docker image for the new implementation as specified in the values.yaml file below. Refer to [https://hub.docker.com/r/marklogicdb/marklogic-db/tags](https://hub.docker.com/r/marklogicdb/marklogic-db/tags) for the latest image available.
49+
Note: Please ensure to use the latest MarkLogic Docker image for the new implementation as specified in the values.yaml file below. Refer to [https://hub.docker.com/r/progressofficial/marklogic-db/tags](https://hub.docker.com/r/progressofficial/marklogic-db/tags) for the latest image available.
5050
```
5151
# Create a single MarkLogic pod
5252
replicaCount: 1
5353
5454
# Marklogic image parameters
5555
# using the latest image 11.0.3-centos-1.0.2
5656
image:
57-
repository: marklogicdb/marklogic-db;
57+
repository: progressofficial/marklogic-db;
5858
tag: 11.0.3-centos-1.0.2
5959
pullPolicy: IfNotPresent
6060
@@ -119,7 +119,7 @@ Following table lists all the parameters supported by the latest MarkLogic Helm
119119
| `group.name` | Group name for joining MarkLogic cluster | `Default` |
120120
| `group.enableXdqpSsl` | SSL encryption for XDQP | `true` |
121121
| `bootstrapHostName` | Host name of MarkLogic bootstrap host (to join a cluster) | `""` |
122-
| `image.repository` | Repository for MarkLogic image | `marklogicdb/marklogic-db` |
122+
| `image.repository` | Repository for MarkLogic image | `progressofficial/marklogic-db` |
123123
| `image.tag` | Image tag for MarkLogic image | `11.2.0-centos-1.1.2` |
124124
| `image.pullPolicy` | Image pull policy for MarkLogic image | `IfNotPresent` |
125125
| `initContainers.configureGroup.image` | Image for configureGroup InitContainer | `curlimages/curl:8.6.0` |

charts/values.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -44,7 +44,7 @@ rootToRootlessUpgrade: false
4444

4545
## Marklogic image parameters
4646
image:
47-
repository: marklogicdb/marklogic-db
47+
repository: progressofficial/marklogic-db
4848
tag: 11.2.0-ubi-rootless
4949
pullPolicy: IfNotPresent
5050

docs/Local_Development_Tutorial.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -21,9 +21,9 @@ This tutorial describes how to set up local Kubernetes development environment w
2121

2222
## Prerequisites
2323
The following steps assume you are running this tutorial from a desktop environment.
24-
- [Docker](https://docs.docker.com/engine/install/): Pull the latest MarkLogic Server image from: https://hub.docker.com/r/marklogicdb/marklogic-db
24+
- [Docker](https://docs.docker.com/engine/install/): Pull the latest MarkLogic Server image from: https://hub.docker.com/r/progressofficial/marklogic-db
2525
```sh
26-
docker pull marklogicdb/marklogic-db:latest
26+
docker pull progressofficial/marklogic-db:latest
2727
```
2828
- [Kubectl](https://kubernetes.io/docs/tasks/tools/): Download and install this tool to assist with debugging in a Kubernetes environment.
2929
- [Helm](https://helm.sh/docs/intro/install/): Clone or download the chart repository: https://github.com/marklogic/marklogic-kubernetes
@@ -53,7 +53,7 @@ minikube Ready control-plane,master 1d v1.23.3
5353

5454
## Installing a Single MarkLogic Host to Minikube
5555
- Push the image used for MarkLogic Server to the Minikube:
56-
`minikube image load marklogicdb/marklogic-db:latest`
56+
`minikube image load progressofficial/marklogic-db:latest`
5757
- Add the Helm repository
5858
`helm repo add marklogic https://marklogic.github.io/marklogic-kubernetes/`
5959
Additionally create a `values.yaml` file for your installation, like the one found in the repository under `/charts`: https://marklogic.github.io/marklogic-kubernetes/. The `values.yaml` file controls configuration for MarkLogic Server running in kubernetes.
@@ -107,7 +107,7 @@ Events:
107107
Type Reason Age From Message
108108
---- ------ ---- ---- -------
109109
Normal Scheduled 13m default-scheduler Successfully assigned default/marklogic-0 to minikube
110-
Normal Pulled 13m kubelet Container image "marklogicdb/marklogic-db:latest" already present on machine
110+
Normal Pulled 13m kubelet Container image "progressofficial/marklogic-db:latest" already present on machine
111111
Normal Created 13m kubelet Created container marklogic
112112
Normal Started 13m kubelet Started container marklogic
113113
Warning Unhealthy 13m kubelet Startup probe failed: ls: cannot access /var/opt/MarkLogic/ready: No such file or directory

makefile

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -82,7 +82,7 @@ lint:
8282
#***************************************************************************
8383
## Run all end to end tests
8484
## Options:
85-
## * [dockerImage] optional. default is marklogicdb/marklogic-db:latest. Example: dockerImage=marklogic-centos/marklogic-server-centos:10-internal
85+
## * [dockerImage] optional. default is progressofficial/marklogic-db:latest. Example: dockerImage=marklogic-centos/marklogic-server-centos:10-internal
8686
## * [prevDockerImage] optional. used for marklogic upgrade tests
8787
## * [kubernetesVersion] optional. Default is v1.25.8. Used for testing kubernetes version compatibility
8888
## * [saveOutput] optional. Save the output to a xml file. Example: saveOutput=true
@@ -186,7 +186,7 @@ template-test: prepare
186186
#***************************************************************************
187187
## Run all tests
188188
## Options:
189-
## * [dockerImage] optional. default is marklogicdb/marklogic-db:latest. Example: dockerImage=marklogic-centos/marklogic-server-centos:10-internal
189+
## * [dockerImage] optional. default is progressofficial/marklogic-db:latest. Example: dockerImage=marklogic-centos/marklogic-server-centos:10-internal
190190
## * [kubernetesVersion] optional. Default is v1.25.8. Used for testing kubernetes version compatibility
191191
## * [saveOutput] optional. Save the output to a xml file. Example: saveOutput=true
192192
.PHONY: test

test/e2e/clustering_test.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@ func TestClusterJoin(t *testing.T) {
3030
imageTag, tagPres := os.LookupEnv("dockerVersion")
3131

3232
if !repoPres {
33-
imageRepo = "marklogicdb/marklogic-db"
33+
imageRepo = "progressofficial/marklogic-db"
3434
t.Logf("No imageRepo variable present, setting to default value: " + imageRepo)
3535
}
3636

test/e2e/path_based_test.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -173,7 +173,7 @@ func TestPathBasedRoutAppServers(t *testing.T) {
173173
imageRepo, repoPres := os.LookupEnv("dockerRepository")
174174
imageTag, tagPres := os.LookupEnv("dockerVersion")
175175
if !repoPres {
176-
imageRepo = "marklogicdb/marklogic-db"
176+
imageRepo = "progressofficial/marklogic-db"
177177
t.Logf("No imageRepo variable present, setting to default value: " + imageRepo)
178178
}
179179

test/e2e/scaling_test.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@ func TestHelmScaleUp(t *testing.T) {
2929
password := "admin"
3030

3131
if !repoPres {
32-
imageRepo = "marklogicdb/marklogic-db"
32+
imageRepo = "progressofficial/marklogic-db"
3333
t.Logf("No imageRepo variable present, setting to default value: " + imageRepo)
3434
}
3535

test/e2e/separate_nodes_test.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -41,7 +41,7 @@ func TestSeparateEDnode(t *testing.T) {
4141
}
4242

4343
if !repoPres {
44-
imageRepo = "marklogicdb/marklogic-db"
44+
imageRepo = "progressofficial/marklogic-db"
4545
t.Logf("No imageRepo variable present, setting to default value: " + imageRepo)
4646
}
4747

test/e2e/tls_test.go

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,7 @@ func TestTLSEnabledWithSelfSigned(t *testing.T) {
3333
password := "admin"
3434

3535
if !repoPres {
36-
imageRepo = "marklogicdb/marklogic-db"
36+
imageRepo = "progressofficial/marklogic-db"
3737
t.Logf("No imageRepo variable present, setting to default value: " + imageRepo)
3838
}
3939

@@ -139,7 +139,7 @@ func TestTLSEnabledWithNamedCert(t *testing.T) {
139139
imageRepo, repoPres := os.LookupEnv("dockerRepository")
140140
imageTag, tagPres := os.LookupEnv("dockerVersion")
141141
if !repoPres {
142-
imageRepo = "marklogicdb/marklogic-db"
142+
imageRepo = "progressofficial/marklogic-db"
143143
t.Logf("No imageRepo variable present, setting to default value: " + imageRepo)
144144
}
145145

@@ -326,7 +326,7 @@ func TestTlsOnEDnode(t *testing.T) {
326326
}
327327

328328
if !repoPres {
329-
imageRepo = "marklogicdb/marklogic-db"
329+
imageRepo = "progressofficial/marklogic-db"
330330
t.Logf("No imageRepo variable present, setting to default value: " + imageRepo)
331331
}
332332

test/e2e/upgrade_test.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -77,7 +77,7 @@ func TestHelmUpgrade(t *testing.T) {
7777
SetValues: map[string]string{
7878
"persistence.enabled": "true",
7979
"replicaCount": "2",
80-
"image.repository": "marklogicdb/marklogic-db",
80+
"image.repository": "progressofficial/marklogic-db",
8181
"image.tag": "latest",
8282
"logCollection.enabled": "false",
8383
},

0 commit comments

Comments
 (0)