Skip to content

Commit

Permalink
Update docs to main
Browse files Browse the repository at this point in the history
  • Loading branch information
ArtemisCloud Bot committed Oct 28, 2024
1 parent fa7c3db commit 3aa0d7a
Show file tree
Hide file tree
Showing 5 changed files with 10 additions and 7 deletions.
2 changes: 1 addition & 1 deletion content/en/docs/help/building.md
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ toc: true

### Go

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).
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).

### Operator SDK

Expand Down
3 changes: 3 additions & 0 deletions content/en/docs/help/operator.md
Original file line number Diff line number Diff line change
Expand Up @@ -1045,6 +1045,9 @@ There would be corresponding keys for users.properties and roles.properties, the

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

## restricted mode (experimental)
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.

## Locking down a broker deployment

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.
Expand Down
6 changes: 3 additions & 3 deletions content/en/docs/tutorials/send_receive_ingress.md
Original file line number Diff line number Diff line change
Expand Up @@ -61,7 +61,7 @@ deployment.apps/ingress-nginx-controller patched
#### Get minikube's ip

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

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

```{"stage":"cert-creation", "rootdir":"$tmpdir.1", "runtime":"bash", "label":"generate cert"}
Expand Down Expand Up @@ -244,7 +244,7 @@ release](https://activemq.apache.org/components/artemis/download/) of ActiveMQ
Artemis, decompress the tarball and locate the artemis executable.
```{"stage":"test_setup", "rootdir":"$tmpdir.1", "runtime":"bash", "label":"download artemis"}
wget --quiet https://dlcdn.apache.org/activemq/activemq-artemis/2.36.0/apache-artemis-2.36.0-bin.tar.gz
wget --quiet https://archive.apache.org/dist/activemq/activemq-artemis/2.36.0/apache-artemis-2.36.0-bin.tar.gz
tar -zxf apache-artemis-2.36.0-bin.tar.gz apache-artemis-2.36.0/
```
Expand Down
4 changes: 2 additions & 2 deletions content/en/docs/tutorials/send_receive_ingress_pem.md
Original file line number Diff line number Diff line change
Expand Up @@ -205,7 +205,7 @@ issuer.cert-manager.io/send-receive-root-issuer condition met
#### Create the issuer certificate

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

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

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

Expand Down
2 changes: 1 addition & 1 deletion content/en/docs/tutorials/send_receive_port_forwarding.md
Original file line number Diff line number Diff line change
Expand Up @@ -161,7 +161,7 @@ release](https://activemq.apache.org/components/artemis/download/) of ActiveMQ
Artemis, decompress the tarball and locate the artemis executable.

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

Expand Down

0 comments on commit 3aa0d7a

Please sign in to comment.