Skip to content

Commit b9cbe6b

Browse files
authored
Merge branch 'main' into title-fixes-h1
2 parents 638a7a0 + 3daa098 commit b9cbe6b

File tree

86 files changed

+2609
-113
lines changed

Some content is hidden

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

86 files changed

+2609
-113
lines changed
Lines changed: 65 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,65 @@
1+
name: Update Kube-Stack Version
2+
3+
on:
4+
schedule:
5+
# Run every Monday at 9:00 AM UTC
6+
- cron: '0 9 * * 1'
7+
workflow_dispatch: # Allow manual triggering
8+
9+
jobs:
10+
update-kube-stack-version:
11+
runs-on: ubuntu-latest
12+
13+
steps:
14+
- name: Checkout repository
15+
uses: actions/checkout@v4
16+
with:
17+
token: ${{ secrets.GITHUB_TOKEN }}
18+
19+
- name: Set up Python
20+
uses: actions/setup-python@v4
21+
with:
22+
python-version: '3.9'
23+
24+
- name: Run kube-stack version update script
25+
run: |
26+
cd scripts
27+
python update_kube_stack_version.py
28+
29+
- name: Check for changes
30+
id: verify-changed-files
31+
run: |
32+
if [ -n "$(git status --porcelain)" ]; then
33+
echo "changed=true" >> $GITHUB_OUTPUT
34+
else
35+
echo "changed=false" >> $GITHUB_OUTPUT
36+
fi
37+
38+
- name: Commit and push changes
39+
if: steps.verify-changed-files.outputs.changed == 'true'
40+
run: |
41+
git config --local user.email "[email protected]"
42+
git config --local user.name "GitHub Action"
43+
git add docs/docset.yml
44+
git commit -m "chore: update kube-stack version [skip ci]"
45+
git push
46+
47+
- name: Create Pull Request
48+
if: steps.verify-changed-files.outputs.changed == 'true'
49+
uses: peter-evans/create-pull-request@v5
50+
with:
51+
token: ${{ secrets.GITHUB_TOKEN }}
52+
commit-message: "chore: update kube-stack version"
53+
title: "chore: update kube-stack version"
54+
body: |
55+
This PR automatically updates the kube-stack version in `docs/docset.yml` based on the latest version from the elastic-agent repository.
56+
57+
**Changes:**
58+
- Updated kube-stack version in docset.yml
59+
60+
This PR was created automatically by the weekly kube-stack version update workflow.
61+
branch: update-kube-stack-version
62+
delete-branch: true
63+
labels: |
64+
automated
65+
documentation

deploy-manage/deploy/cloud-enterprise/access-kibana.md

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,5 @@
11
---
2+
navigation_title: Access {{kib}}
23
mapped_pages:
34
- https://www.elastic.co/guide/en/cloud-enterprise/current/ece-access-kibana.html
45
- https://www.elastic.co/guide/en/cloud-enterprise/current/ece-manage-kibana.html
@@ -9,7 +10,7 @@ products:
910
- id: cloud-enterprise
1011
---
1112

12-
# Access {{kib}} [ece-access-kibana]
13+
# Access {{kib}} on {{ece}} [ece-access-kibana]
1314

1415
{{kib}} is an open source analytics and visualization platform designed to search, view, and interact with data stored in {{es}} indices.
1516

deploy-manage/deploy/cloud-enterprise/add-plugins.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,11 @@
11
---
2-
navigation_title: Configure plugins and extensions
2+
navigation_title: Add plugins and extensions
33
applies_to:
44
deployment:
55
ece:
66
---
77

8-
# Add plugins and extensions [ece-adding-plugins]
8+
# Add plugins and extensions in {{ece}} [ece-adding-plugins]
99

1010
Plugins extend the core functionality of {{es}}. {{ece}} makes it easy to add plugins to your deployment by providing a number of plugins that work with your version of {{es}}. One advantage of these plugins is that you generally don’t have to worry about upgrading plugins when upgrading to a new {{es}} version, unless there are breaking changes. The plugins are upgraded along with the rest of your deployment.
1111

deploy-manage/deploy/cloud-enterprise/keep-track-of-deployment-activity.md

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,5 @@
11
---
2+
navigation_title: Keep track of deployment activity
23
mapped_pages:
34
- https://www.elastic.co/guide/en/cloud-enterprise/current/ece-activity-page.html
45
applies_to:
@@ -8,7 +9,7 @@ products:
89
- id: cloud-enterprise
910
---
1011

11-
# Keep track of deployment activity [ece-activity-page]
12+
# Keep track of deployment activity on {{ece}} [ece-activity-page]
1213

1314
The deployment **Activity** page gives you a convenient way to follow all configuration changes that have been applied to your deployment, including which resources were affected, when the changes were applied, who initiated the changes, and whether or not the changes were successful. You can also select **Details** for an expanded, step-by-step view of each change applied to each deployment resource.
1415

deploy-manage/deploy/cloud-on-k8s/advanced-configuration-logstash.md

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,5 @@
11
---
2+
navigation_title: Advanced configuration
23
mapped_pages:
34
- https://www.elastic.co/guide/en/cloud-on-k8s/current/k8s-logstash-advanced-configuration.html
45
applies_to:
@@ -8,7 +9,7 @@ products:
89
- id: cloud-kubernetes
910
---
1011

11-
# Advanced configuration [k8s-logstash-advanced-configuration]
12+
# Advanced configuration for {{ls}} on {{eck}} [k8s-logstash-advanced-configuration]
1213

1314
## Setting JVM options [k8s-logstash-jvm-options]
1415

deploy-manage/deploy/cloud-on-k8s/advanced-configuration-maps-server.md

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,5 @@
11
---
2+
navigation_title: Advanced configuration
23
mapped_pages:
34
- https://www.elastic.co/guide/en/cloud-on-k8s/current/k8s-maps-advanced-configuration.html
45
applies_to:
@@ -8,7 +9,7 @@ products:
89
- id: cloud-kubernetes
910
---
1011

11-
# Advanced configuration [k8s-maps-advanced-configuration]
12+
# Advanced configuration for Elastic Maps Server on {{eck}} [k8s-maps-advanced-configuration]
1213

1314
::::{warning}
1415
This functionality is in technical preview and may be changed or removed in a future release. Elastic will work to fix any issues, but features in technical preview are not subject to the support SLA of official GA features.

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

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,5 @@
11
---
2+
navigation_title: Advanced configuration
23
mapped_pages:
34
- https://www.elastic.co/guide/en/cloud-on-k8s/current/k8s-apm-advanced-configuration.html
45
applies_to:
@@ -8,7 +9,7 @@ products:
89
- id: cloud-kubernetes
910
---
1011

11-
# Advanced configuration [k8s-apm-advanced-configuration]
12+
# Advanced configuration for {{apm-server}} on {{eck}} [k8s-apm-advanced-configuration]
1213

1314
This section covers the following topics:
1415

deploy-manage/deploy/cloud-on-k8s/k8s-kibana-advanced-configuration.md

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,5 @@
11
---
2+
navigation_title: Advanced configuration
23
mapped_pages:
34
- https://www.elastic.co/guide/en/cloud-on-k8s/current/k8s-kibana-advanced-configuration.html
45
applies_to:
@@ -8,7 +9,7 @@ products:
89
- id: cloud-kubernetes
910
---
1011

11-
# Advanced configuration [k8s-kibana-advanced-configuration]
12+
# Advanced {{kib}} deployment and configuration on {{eck}} [k8s-kibana-advanced-configuration]
1213

1314
If you already looked at the [{{es}} on ECK](elasticsearch-configuration.md) documentation, some of these concepts might sound familiar to you. The resource definitions in ECK share the same philosophy when you want to:
1415

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

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,5 @@
11
---
2+
navigation_title: Quickstart
23
mapped_pages:
34
- https://www.elastic.co/guide/en/cloud-on-k8s/current/k8s-beat-quickstart.html
45
applies_to:
@@ -8,7 +9,7 @@ products:
89
- id: cloud-kubernetes
910
---
1011

11-
# Quickstart [k8s-beat-quickstart]
12+
# Quickstart: Running {{beats}} on {{eck}} [k8s-beat-quickstart]
1213

1314
1. Apply the following specification to deploy Filebeat and collect the logs of all containers running in the Kubernetes cluster. ECK automatically configures the secured connection to an {{es}} cluster named `quickstart`, created in [](/deploy-manage/deploy/cloud-on-k8s/elasticsearch-deployment-quickstart.md).
1415

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

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,5 @@
11
---
2+
navigation_title: Quickstart
23
mapped_pages:
34
- https://www.elastic.co/guide/en/cloud-on-k8s/current/k8s-elastic-agent-fleet-quickstart.html
45
applies_to:
@@ -8,7 +9,7 @@ products:
89
- id: cloud-kubernetes
910
---
1011

11-
# Quickstart [k8s-elastic-agent-fleet-quickstart]
12+
# Quickstart: Running {{fleet}} on {{eck}} [k8s-elastic-agent-fleet-quickstart]
1213

1314
1. To deploy {{fleet-server}}, {{agents}}, {{es}}, and {{kib}}, apply the following specification:
1415

0 commit comments

Comments
 (0)