Skip to content
This repository was archived by the owner on Jan 2, 2025. It is now read-only.

Commit 3aa0d7a

Browse files
author
ArtemisCloud Bot
committed
Update docs to main
1 parent fa7c3db commit 3aa0d7a

File tree

5 files changed

+10
-7
lines changed

5 files changed

+10
-7
lines changed

content/en/docs/help/building.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ toc: true
1919

2020
### Go
2121

22-
Download the Go version v1.20.13 from the [download page](https://go.dev/dl/) and install it following the [installation instructions](https://go.dev/doc/install).
22+
Download the Go version v1.21.11 from the [download page](https://go.dev/dl/) and install it following the [installation instructions](https://go.dev/doc/install).
2323

2424
### Operator SDK
2525

content/en/docs/help/operator.md

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1045,6 +1045,9 @@ There would be corresponding keys for users.properties and roles.properties, the
10451045

10461046
With the possiblity of configuring arbritary jaas login modules directly, the ArtemisSecurityCR ActiveMQArtemisSecuritySpec.LoginModules and ActiveMQArtemisSecuritySpec.SecurityDomains fields are deprecated.
10471047

1048+
## restricted mode (experimental)
1049+
The CR supports a boolean restricted attribute. For single pod broker deployments this provides an empty broker that is configured through brokerProperties. The broker is secured with PKI, there are no passwords. Cert manager can be used to create the necessary PKI secrets. The end result is a minimal broker deployment; an embedded broker with an mtls endpoint for the jolokia jvm agent and RBAC that allows just the operator to check the broker status. There is no init container, no jetty and no xml.
1050+
10481051
## Locking down a broker deployment
10491052

10501053
Often when verificiation is complete it is desirable to lock down the broker images and prevent auto upgrades, which will result in a roll out of images and a restart of your broker.

content/en/docs/tutorials/send_receive_ingress.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -61,7 +61,7 @@ deployment.apps/ingress-nginx-controller patched
6161
#### Get minikube's ip
6262

6363
```{"stage":"init", "runtime":"bash", "label":"get the cluster ip"}
64-
export CLUSTER_IP=$(minikube ip)
64+
export CLUSTER_IP=$(minikube ip --profile tutorialtester)
6565
```
6666

6767
#### Make sure the domain of your cluster is resolvable
@@ -141,7 +141,7 @@ to configure the certificates.
141141
> name `send-receive` and the acceptor name `sselacceptor`
142142
143143
```{"stage":"etc", "runtime":"bash", "label":"get the cluster ip"}
144-
export CLUSTER_IP=$(minikube ip)
144+
export CLUSTER_IP=$(minikube ip --profile tutorialtester)
145145
```
146146

147147
```{"stage":"cert-creation", "rootdir":"$tmpdir.1", "runtime":"bash", "label":"generate cert"}
@@ -244,7 +244,7 @@ release](https://activemq.apache.org/components/artemis/download/) of ActiveMQ
244244
Artemis, decompress the tarball and locate the artemis executable.
245245
246246
```{"stage":"test_setup", "rootdir":"$tmpdir.1", "runtime":"bash", "label":"download artemis"}
247-
wget --quiet https://dlcdn.apache.org/activemq/activemq-artemis/2.36.0/apache-artemis-2.36.0-bin.tar.gz
247+
wget --quiet https://archive.apache.org/dist/activemq/activemq-artemis/2.36.0/apache-artemis-2.36.0-bin.tar.gz
248248
tar -zxf apache-artemis-2.36.0-bin.tar.gz apache-artemis-2.36.0/
249249
```
250250

content/en/docs/tutorials/send_receive_ingress_pem.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -205,7 +205,7 @@ issuer.cert-manager.io/send-receive-root-issuer condition met
205205
#### Create the issuer certificate
206206

207207
```bash {"stage":"etc", "runtime":"bash", "label":"get the cluster ip"}
208-
export CLUSTER_IP=$(minikube ip)
208+
export CLUSTER_IP=$(minikube ip --profile tutorialtester)
209209
```
210210

211211
```bash {"stage":"cert-manager", "HereTag":"EOF", "runtime":"bash", "label":"create issuer certificate"}
@@ -406,7 +406,7 @@ open a working connection:
406406
reached.
407407

408408
```bash {"stage":"test_setup", "rootdir":"$tmpdir.1", "runtime":"bash", "label":"download artemis"}
409-
wget --quiet https://dlcdn.apache.org/activemq/activemq-artemis/2.36.0/apache-artemis-2.36.0-bin.tar.gz
409+
wget --quiet https://archive.apache.org/dist/activemq/activemq-artemis/2.36.0/apache-artemis-2.36.0-bin.tar.gz
410410
tar -zxf apache-artemis-2.36.0-bin.tar.gz apache-artemis-2.36.0/
411411
```
412412

content/en/docs/tutorials/send_receive_port_forwarding.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -161,7 +161,7 @@ release](https://activemq.apache.org/components/artemis/download/) of ActiveMQ
161161
Artemis, decompress the tarball and locate the artemis executable.
162162

163163
```bash {"stage":"test_setup", "rootdir":"$tmpdir.1", "runtime":"bash", "label":"download artemis"}
164-
wget --quiet https://dlcdn.apache.org/activemq/activemq-artemis/2.36.0/apache-artemis-2.36.0-bin.tar.gz
164+
wget --quiet https://archive.apache.org/dist/activemq/activemq-artemis/2.36.0/apache-artemis-2.36.0-bin.tar.gz
165165
tar -zxf apache-artemis-2.36.0-bin.tar.gz apache-artemis-2.36.0/
166166
```
167167

0 commit comments

Comments
 (0)