Skip to content

Commit be6b8b3

Browse files
authored
Merge branch 'main' into apm-server-load-balancers
2 parents 64a6a38 + 6b53514 commit be6b8b3

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

43 files changed

+395
-2959
lines changed

deploy-manage/deploy/cloud-enterprise/configure-host-rhel-cloud.md

Lines changed: 11 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -72,16 +72,24 @@ Verify that required traffic is allowed. Check the [Networking prerequisites](ec
7272

7373
4. Install podman:
7474

75-
* For RHEL 8 and Rocky Linux, install version `4.*`.
75+
* Install the latest available version `4.*` using dnf.
7676

7777
```sh
7878
sudo dnf install podman-4.* podman-remote-4.*
7979
```
8080

81-
* For RHEL 9, install the latest available version `4.*` using dnf.
81+
* To prevent automatic Podman major version updates, configure the Podman version to be locked while still allowing minor and patch updates.
8282

8383
```sh
84-
sudo dnf install podman-4.* podman-remote-4.*
84+
## Install versionlock
85+
sudo dnf install 'dnf-command(versionlock)'
86+
87+
## Lock major version
88+
sudo dnf versionlock add --raw 'podman-4.*'
89+
sudo dnf versionlock add --raw 'podman-remote-4.*'
90+
91+
## Verify that podman-4.* and podman-remote-4.* appear in the output
92+
sudo dnf versionlock list
8593
```
8694

8795
5. [This step is for RHEL 9 and Rocky Linux 9 only] Switch the network stack from Netavark to CNI:

deploy-manage/deploy/cloud-enterprise/configure-host-rhel-onprem.md

Lines changed: 11 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -70,16 +70,24 @@ Verify that required traffic is allowed.
7070

7171
4. Install podman:
7272

73-
* For RHEL 8 and Rocky Linux, install version `4.*`.
73+
* Install the latest available version `4.*` using dnf.
7474

7575
```sh
7676
sudo dnf install podman-4.* podman-remote-4.*
7777
```
7878

79-
* For RHEL 9, install the latest available version `4.*` using dnf.
79+
* To prevent automatic Podman major version updates, configure the Podman version to be locked while still allowing minor and patch updates.
8080

8181
```sh
82-
sudo dnf install podman-4.* podman-remote-4.*
82+
## Install versionlock
83+
sudo dnf install 'dnf-command(versionlock)'
84+
85+
## Lock major version
86+
sudo dnf versionlock add --raw 'podman-4.*'
87+
sudo dnf versionlock add --raw 'podman-remote-4.*'
88+
89+
## Verify that podman-4.* and podman-remote-4.* appear in the output
90+
sudo dnf versionlock list
8391
```
8492

8593
5. [This step is for RHEL 9 and Rocky Linux 9 only] Switch the network stack from Netavark to CNI:

deploy-manage/deploy/cloud-enterprise/migrate-ece-to-podman-hosts.md

Lines changed: 11 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -111,16 +111,24 @@ Otherwise, when the file content changes, the corresponding user is mentioned as
111111

112112
4. Install podman:
113113

114-
* For RHEL 8 and Rocky Linux, install version `4.*`.
114+
* Install the latest available version `4.*` using dnf.
115115

116116
```sh
117117
sudo dnf install podman-4.* podman-remote-4.*
118118
```
119119

120-
* For RHEL 9, install the latest available version `4.*` using dnf.
120+
* To prevent automatic Podman major version updates, configure the Podman version to be locked while still allowing minor and patch updates.
121121

122122
```sh
123-
sudo dnf install podman-4.* podman-remote-4.*
123+
## Install versionlock
124+
sudo dnf install 'dnf-command(versionlock)'
125+
126+
## Lock major version
127+
sudo dnf versionlock add --raw 'podman-4.*'
128+
sudo dnf versionlock add --raw 'podman-remote-4.*'
129+
130+
## Verify that podman-4.* and podman-remote-4.* appear in the output
131+
sudo dnf versionlock list
124132
```
125133

126134
5. [This step is for RHEL 9 and Rocky Linux 9 only] Switch the network stack from Netavark to CNI:

deploy-manage/deploy/cloud-on-k8s.md

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -68,12 +68,14 @@ This section outlines the supported Kubernetes and Elastic Stack versions for EC
6868
ECK is compatible with the following Kubernetes distributions and related technologies:
6969

7070
* Kubernetes 1.28-1.32
71-
* OpenShift 4.12-4.17
71+
* OpenShift 4.13-4.18
7272
* Google Kubernetes Engine (GKE), Azure Kubernetes Service (AKS), and Amazon Elastic Kubernetes Service (EKS)
7373
* Helm: 3.2.0+
7474

7575
ECK should work with all conformant **installers** listed in these [FAQs](https://github.com/cncf/k8s-conformance/blob/master/faq.md#what-is-a-distribution-hosted-platform-and-an-installer). Distributions include source patches and so may not work as-is with ECK.
7676

77+
Alpha, beta, and stable API versions follow the same [conventions used by Kubernetes](https://kubernetes.io/docs/concepts/overview/kubernetes-api/#api-versioning).
78+
7779
### Elastic Stack compatibility
7880

7981
ECK is compatible with the following Elastic Stack applications:

docset.yml

Lines changed: 6 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,11 @@
11
project: 'Elastic documentation'
2+
3+
features:
4+
primary-nav: true
5+
26
exclude:
37
- 'README.md'
8+
49
cross_links:
510
- asciidocalypse
611
- kibana
@@ -516,4 +521,4 @@ subs:
516521
a-data-source: "a data view"
517522
icon-bug: "pass:[<span class=\"eui-icon icon-bug\"></span>]"
518523
icon-checkInCircleFilled: "pass:[<span class=\"eui-icon icon-checkInCircleFilled\"></span>]"
519-
icon-warningFilled: "pass:[<span class=\"eui-icon icon-warningFilled\"></span>]"
524+
icon-warningFilled: "pass:[<span class=\"eui-icon icon-warningFilled\"></span>]"
-1.18 MB
Binary file not shown.
-62.3 KB
Binary file not shown.
-1.18 MB
Binary file not shown.

raw-migrated-files/docs-content/serverless/security-advanced-settings.md

Lines changed: 0 additions & 175 deletions
This file was deleted.

raw-migrated-files/docs-content/serverless/security-data-views-in-sec.md

Lines changed: 0 additions & 50 deletions
This file was deleted.

0 commit comments

Comments
 (0)