Skip to content

Commit a017805

Browse files
committed
Merge remote-tracking branch 'saltstack/3007.x' into merge/master/3007.x
2 parents 3ea2573 + 64a91d4 commit a017805

File tree

587 files changed

+17600
-19896
lines changed

Some content is hidden

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

587 files changed

+17600
-19896
lines changed

.github/ISSUE_TEMPLATE/config.yml

+2-5
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,8 @@
11
blank_issues_enabled: true
22
contact_links:
3-
- name: Salt Community Slack
4-
url: https://saltstackcommunity.slack.com/
3+
- name: Salt Community Discord
4+
url: https://discord.com/invite/J7b7EscrAs
55
about: Please ask and answer questions here.
66
- name: Salt-Users Forum
77
url: https://groups.google.com/forum/#!forum/salt-users
88
about: Please ask and answer questions here.
9-
- name: Salt on LiberaChat
10-
url: https://web.libera.chat/#salt
11-
about: Please ask and answer questions here.

.github/ISSUE_TEMPLATE/tech-debt.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ assignees: ''
88
---
99

1010
### Description of the tech debt to be addressed, include links and screenshots
11-
<!-- Note: Please direct questions to the salt-users google group, IRC or Community Slack. -->
11+
<!-- Note: Please direct questions to the salt-users google group, GitHub Discussions or Community Discord. -->
1212

1313
### Versions Report
1414
(Provided by running `salt --versions-report`. Please also mention any differences in master/minion versions.)

.github/PULL_REQUEST_TEMPLATE.md

+12-4
Original file line numberDiff line numberDiff line change
@@ -11,15 +11,23 @@ Remove this section if not relevant
1111

1212
### Merge requirements satisfied?
1313
**[NOTICE] Bug fixes or features added to Salt require tests.**
14-
<!-- Please review the [test documentation](https://docs.saltproject.io/en/master/topics/tutorials/writing_tests.html) for details on how to implement tests into Salt's test suite. -->
14+
<!-- Please review the test documentation for details on how to implement tests
15+
into Salt's test suite:
16+
https://docs.saltproject.io/en/master/topics/tutorials/writing_tests.html -->
1517
- [ ] Docs
1618
- [ ] Changelog - https://docs.saltproject.io/en/master/topics/development/changelog.html
1719
- [ ] Tests written/updated
1820

1921
### Commits signed with GPG?
2022
Yes/No
2123

22-
Please review [Salt's Contributing Guide](https://docs.saltproject.io/en/master/topics/development/contributing.html) for best practices, including the
23-
[PR Guidelines](https://docs.saltproject.io/en/master/topics/development/pull_requests.html).
24+
<!-- Please review Salt's Contributing Guide for best practices and guidance in
25+
choosing the right branch:
26+
https://docs.saltproject.io/en/master/topics/development/contributing.html -->
2427

25-
See GitHub's [page on GPG signing](https://help.github.com/articles/signing-commits-using-gpg/) for more information about signing commits with GPG.
28+
<!-- Additional guidance for pull requests can be found here:
29+
https://docs.saltproject.io/en/master/topics/development/pull_requests.html -->
30+
31+
<!-- See GitHub's page on GPG signing for more information about signing commits
32+
with GPG:
33+
https://help.github.com/articles/signing-commits-using-gpg/ -->

.github/actionlint.yaml

+2-11
Original file line numberDiff line numberDiff line change
@@ -1,14 +1,5 @@
11
self-hosted-runner:
22
# Labels of self-hosted runner in array of string
33
labels:
4-
- bastion
5-
- x86_64
6-
- arm64
7-
- aarch64
8-
- amd64
9-
- repo-nightly
10-
- repo-staging
11-
- repo-release
12-
- medium
13-
- large
14-
- macos-13-xlarge
4+
- linux-x86_64
5+
- linux-arm64

.github/actions/cache/action.yml

-7
Original file line numberDiff line numberDiff line change
@@ -26,10 +26,6 @@ inputs:
2626
description: 'Check if a cache entry exists for the given input(s) (key, restore-keys) without downloading the cache'
2727
default: 'false'
2828
required: false
29-
save-always:
30-
description: 'Run the post step to save the cache even if another step before fails'
31-
default: 'false'
32-
required: false
3329

3430
outputs:
3531
cache-hit:
@@ -49,7 +45,6 @@ runs:
4945
echo "GHA_CACHE_ENABLE_CROSS_OS_ARCHIVE=${{ inputs.enableCrossOsArchive }}" | tee -a "${GITHUB_ENV}"
5046
echo "GHA_CACHE_FAIL_ON_CACHE_MISS=${{ inputs.fail-on-cache-miss }}" | tee -a "${GITHUB_ENV}"
5147
echo "GHA_CACHE_LOOKUP_ONLY=${{ inputs.lookup-only }}" | tee -a "${GITHUB_ENV}"
52-
echo "GHA_CACHE_SAVE_ALWAYS=${{ inputs.save-always }}" | tee -a "${GITHUB_ENV}"
5348
echo "GHA_CACHE_RESTORE_KEYS=${{ inputs.restore-keys }}" | tee -a "${GITHUB_ENV}"
5449
echo "GHA_CACHE_UPLOAD_CHUNK_SIZE=${{ inputs.upload-chunk-size }}" | tee -a "${GITHUB_ENV}"
5550
@@ -63,7 +58,6 @@ runs:
6358
enableCrossOsArchive: ${{ env.GHA_CACHE_ENABLE_CROSS_OS_ARCHIVE }}
6459
fail-on-cache-miss: ${{ env.GHA_CACHE_FAIL_ON_CACHE_MISS }}
6560
lookup-only: ${{ env.GHA_CACHE_LOOKUP_ONLY }}
66-
save-always: ${{ env.GHA_CACHE_SAVE_ALWAYS }}
6761
restore-keys: ${{ env.GHA_CACHE_RESTORE_KEYS }}
6862
upload-chunk-size: ${{ env.GHA_CACHE_UPLOAD_CHUNK_SIZE }}
6963

@@ -97,7 +91,6 @@ runs:
9791
enableCrossOsArchive: ${{ env.GHA_CACHE_ENABLE_CROSS_OS_ARCHIVE }}
9892
fail-on-cache-miss: ${{ env.GHA_CACHE_FAIL_ON_CACHE_MISS }}
9993
lookup-only: ${{ env.GHA_CACHE_LOOKUP_ONLY }}
100-
save-always: ${{ env.GHA_CACHE_SAVE_ALWAYS }}
10194
restore-keys: ${{ env.GHA_CACHE_RESTORE_KEYS }}
10295
upload-chunk-size: ${{ env.GHA_CACHE_UPLOAD_CHUNK_SIZE }}
10396

.github/actions/setup-python-tools-scripts/action.yml

+3
Original file line numberDiff line numberDiff line change
@@ -54,10 +54,13 @@ runs:
5454
working-directory: ${{ inputs.cwd }}
5555
run: |
5656
PYTHON_EXE=${{ steps.tools-virtualenv.outputs.python-executable }}
57+
${PYTHON_EXE} -m ensurepip --upgrade
5758
(${PYTHON_EXE} -m pip install --help | grep break-system-packages > /dev/null 2>&1) && exitcode=0 || exitcode=1
5859
if [ $exitcode -eq 0 ]; then
60+
${PYTHON_EXE} -m pip install --break-system-packages --upgrade setuptools
5961
${PYTHON_EXE} -m pip install --break-system-packages -r requirements/static/ci/py${{ steps.get-python-version.outputs.version }}/tools.txt
6062
else
63+
${PYTHON_EXE} -m pip install --upgrade setuptools
6164
${PYTHON_EXE} -m pip install -r requirements/static/ci/py${{ steps.get-python-version.outputs.version }}/tools.txt
6265
fi
6366

.github/actions/ssh-tunnel/README.md

+94
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,94 @@
1+
# SSH Tunnel
2+
3+
The ssh-tunnel action will create a reverse tunnel over webrtc to port 22 on the runner.
4+
5+
## Usage
6+
7+
In order to use this action you must have a sdp offer from your local host and a ssh key pair.
8+
Start with creating an sdp offer on your local machine. Provide these values to the ssh-tunnel
9+
action and wait for output from the action with the sdp reply. Provide the reply to the local
10+
rtcforward.py process by pasting it to stdin. If all goes well the local port on your maching
11+
will be forwarded to the ssh port on the runner.
12+
13+
### Getting an sdp offer
14+
15+
To get an sdp offer start rtcforward.py on you local machine with the offer command.
16+
You can also specify which port on the local machine will be used for the tunnel.
17+
18+
``` bash
19+
$ python3 .github/actions/ssh-tunnel/rtcforward.py offer --port 5222
20+
```
21+
22+
rtcforward.py will create an offer an display it to your terminal. (This example offer has been truncated)
23+
After showing the offer the `rtcforward.py` process will wait for a reply.
24+
```
25+
-- offer --
26+
eyJzZHAiOiAidj0wXHJcbm89LSAzOTQ3Mzg4NjUzIDM5NDczODg2NTMgSU4gSVA0IDAuMC4wLjBcclxu
27+
cz0tXHJcbnQ9MCAwXHJcbmE9Z3JvdXA6QlVORExFIDBcclxuYT1tc2lkLXNlbWFudGljOldNUyAqXHJc
28+
bm09YXBwbGljYXRpb24gMzUyNjkgRFRMUy9TQ1RQIDUwMDBcclxuYz1JTiBJUDQgMTkyLjE2OC4wLjIw
29+
IHVkcCAxNjk0NDk4ODE1IDE4NC4xNzkuMjEwLjE1MiAzNTI2OSB0eXAgc3JmbHggcmFkZHIgMTkyLjE2
30+
OC4wLjIwMSBycG9ydCAzNTI2OVxyXG5hPWNhbmRpZGF0ZTozZWFjMzJiZTZkY2RkMTAwZDcwMTFiNWY0
31+
NTo4Qzo2MDoxMTpFQTo3NzpDMTo5RTo1QTo3QzpDQzowRDowODpFQzo2NDowQToxM1xyXG5hPWZpbmdl
32+
cnByaW50OnNoYS01MTIgNjY6MzI6RUQ6MDA6N0I6QjY6NTQ6NzA6MzE6OTA6M0I6Mjg6Q0I6QTk6REU6
33+
MzQ6QjI6NDY6NzE6NUI6MjM6ODA6Nzg6Njg6RDA6QTA6QTg6MjU6QkY6MDQ6ODY6NUY6OTA6QUY6MUQ6
34+
QjA6QzY6ODA6QUY6OTc6QTI6MkM6NDI6QUU6MkI6Q0Q6Mjk6RUQ6MkI6ODc6NTU6ODg6NDY6QTM6ODk6
35+
OEY6ODk6OTE6QTE6QTI6NDM6NTc6M0E6MjZcclxuYT1zZXR1cDphY3RwYXNzXHJcbiIsICJ0eXBlIjog
36+
Im9mZmVyIn0=
37+
-- end offer --
38+
-- Please enter a message from remote party --
39+
```
40+
41+
### Getting an sdp answer
42+
43+
Provide the offer to the ssh-tunnel action. When the action runs, an answer to the offer will be generated.
44+
In the action output you will see that the offer was recieved and the reply in the output.
45+
46+
```
47+
-- Please enter a message from remote party --
48+
-- Message received --
49+
-- reply --
50+
eyJzZHAiOiAidj0wXHJcbm89LSAzOTQ3Mzg3NDcxIDM5NDczODc0NzEgSU4gSVA0IDAuMC4wLjBcclxu
51+
cz0tXHJcbnQ9MCAwXHJcbmE9Z3JvdXA6QlVORExFIDBcclxuYT1tc2lkLXNlbWFudGljOldNUyAqXHJc
52+
bm09YXBwbGljYXRpb24gNTcwMzkgRFRMUy9TQ1RQIDUwMDBcclxuYz1JTiBJUDQgMTkyLjE2OC42NC4x
53+
MFxyXG5hPW1pZDowXHJcbmE9c2N0cG1hcDo1MDAwIHdlYnJ0Yy1kYXRhY2hhbm5lbCA2NTUzNVxyXG5h
54+
MTc6MEI6RTA6OTA6QUM6RjU6RTk6RUI6Q0E6RUE6NTY6REI6NTA6QTk6REY6NTU6MzY6MkM6REI6OUE6
55+
MDc6Mzc6QTM6NDc6NjlcclxuYT1maW5nZXJwcmludDpzaGEtNTEyIDMyOjRDOjk0OkRDOjNFOkU5OkU3
56+
OjNCOjc5OjI4OjZDOjc5OkFEOkVDOjIzOkJDOjRBOjRBOjE5OjlCOjg5OkE3OkE2OjZBOjAwOjJFOkM5
57+
OkE0OjlEOjAwOjM0OjFFOjRDOkVGOjcwOkY5OkNBOjg0OjlEOjcxOjI5OkVCOkIxOkREOkFEOjg5OjUx
58+
OkZFOjhCOjI3OjFDOjFBOkJEOjUxOjQ2OjE4OjBBOjhFOjVBOjI1OjQzOjQzOjZGOkRBXHJcbmE9c2V0
59+
dXA6YWN0aXZlXHJcbiIsICJ0eXBlIjogImFuc3dlciJ9
60+
-- end reply --
61+
```
62+
63+
# Finalizing the tunnel
64+
65+
Paste the sdp reply from the running action into the running `rtcforward.py` process that created the offer.
66+
After receiveing the offer you will see `-- Message received --` and tunnel will be created.
67+
68+
```
69+
-- offer --
70+
eyJzZHAiOiAidj0wXHJcbm89LSAzOTQ3Mzg4NjUzIDM5NDczODg2NTMgSU4gSVA0IDAuMC4wLjBcclxu
71+
cz0tXHJcbnQ9MCAwXHJcbmE9Z3JvdXA6QlVORExFIDBcclxuYT1tc2lkLXNlbWFudGljOldNUyAqXHJc
72+
bm09YXBwbGljYXRpb24gMzUyNjkgRFRMUy9TQ1RQIDUwMDBcclxuYz1JTiBJUDQgMTkyLjE2OC4wLjIw
73+
IHVkcCAxNjk0NDk4ODE1IDE4NC4xNzkuMjEwLjE1MiAzNTI2OSB0eXAgc3JmbHggcmFkZHIgMTkyLjE2
74+
OC4wLjIwMSBycG9ydCAzNTI2OVxyXG5hPWNhbmRpZGF0ZTozZWFjMzJiZTZkY2RkMTAwZDcwMTFiNWY0
75+
NTo4Qzo2MDoxMTpFQTo3NzpDMTo5RTo1QTo3QzpDQzowRDowODpFQzo2NDowQToxM1xyXG5hPWZpbmdl
76+
cnByaW50OnNoYS01MTIgNjY6MzI6RUQ6MDA6N0I6QjY6NTQ6NzA6MzE6OTA6M0I6Mjg6Q0I6QTk6REU6
77+
MzQ6QjI6NDY6NzE6NUI6MjM6ODA6Nzg6Njg6RDA6QTA6QTg6MjU6QkY6MDQ6ODY6NUY6OTA6QUY6MUQ6
78+
QjA6QzY6ODA6QUY6OTc6QTI6MkM6NDI6QUU6MkI6Q0Q6Mjk6RUQ6MkI6ODc6NTU6ODg6NDY6QTM6ODk6
79+
OEY6ODk6OTE6QTE6QTI6NDM6NTc6M0E6MjZcclxuYT1zZXR1cDphY3RwYXNzXHJcbiIsICJ0eXBlIjog
80+
Im9mZmVyIn0=
81+
-- end offer --
82+
-- Please enter a message from remote party --
83+
eyJzZHAiOiAidj0wXHJcbm89LSAzOTQ3Mzg3NDcxIDM5NDczODc0NzEgSU4gSVA0IDAuMC4wLjBcclxu
84+
cz0tXHJcbnQ9MCAwXHJcbmE9Z3JvdXA6QlVORExFIDBcclxuYT1tc2lkLXNlbWFudGljOldNUyAqXHJc
85+
bm09YXBwbGljYXRpb24gNTcwMzkgRFRMUy9TQ1RQIDUwMDBcclxuYz1JTiBJUDQgMTkyLjE2OC42NC4x
86+
MFxyXG5hPW1pZDowXHJcbmE9c2N0cG1hcDo1MDAwIHdlYnJ0Yy1kYXRhY2hhbm5lbCA2NTUzNVxyXG5h
87+
MTc6MEI6RTA6OTA6QUM6RjU6RTk6RUI6Q0E6RUE6NTY6REI6NTA6QTk6REY6NTU6MzY6MkM6REI6OUE6
88+
MDc6Mzc6QTM6NDc6NjlcclxuYT1maW5nZXJwcmludDpzaGEtNTEyIDMyOjRDOjk0OkRDOjNFOkU5OkU3
89+
OjNCOjc5OjI4OjZDOjc5OkFEOkVDOjIzOkJDOjRBOjRBOjE5OjlCOjg5OkE3OkE2OjZBOjAwOjJFOkM5
90+
OkE0OjlEOjAwOjM0OjFFOjRDOkVGOjcwOkY5OkNBOjg0OjlEOjcxOjI5OkVCOkIxOkREOkFEOjg5OjUx
91+
OkZFOjhCOjI3OjFDOjFBOkJEOjUxOjQ2OjE4OjBBOjhFOjVBOjI1OjQzOjQzOjZGOkRBXHJcbmE9c2V0
92+
dXA6YWN0aXZlXHJcbiIsICJ0eXBlIjogImFuc3dlciJ9
93+
-- Message received --
94+
```

.github/config.yml

+6-10
Original file line numberDiff line numberDiff line change
@@ -11,18 +11,16 @@ newIssueWelcomeComment: >
1111
Also, check out some of our community
1212
resources including:
1313
14-
- [Community Wiki](https://github.com/saltstack/community/wiki)
1514
- [Salt’s Contributor Guide](https://docs.saltproject.io/en/master/topics/development/contributing.html)
16-
- [Join our Community Slack](https://via.vmw.com/salt-slack)
17-
- [IRC on LiberaChat](https://web.libera.chat/#salt)
15+
- [Join our Community Discord](https://discord.com/invite/J7b7EscrAs)
1816
- [Salt Project YouTube channel](https://www.youtube.com/channel/UCpveTIucFx9ljGelW63-BWg)
19-
- [Salt Project Twitch channel](https://www.twitch.tv/saltprojectoss)
17+
- [Community Wiki](https://github.com/saltstack/community/wiki)
2018
2119
There are lots of ways to get involved in our community. Every month, there are around a dozen
2220
opportunities to meet with other contributors and the Salt Core team and collaborate in real
2321
time. The best way to keep track is by subscribing to the Salt Community Events Calendar.
2422
25-
If you have additional questions, email us at saltproject@vmware.com. We’re glad
23+
If you have additional questions, email us at saltproject.pdl@broadcom.com. We’re glad
2624
you’ve joined our community and look forward to doing awesome things with
2725
you!
2826
@@ -37,18 +35,16 @@ newPRWelcomeComment: >
3735
Also, check out some of our community
3836
resources including:
3937
40-
- [Community Wiki](https://github.com/saltstack/community/wiki)
4138
- [Salt’s Contributor Guide](https://docs.saltproject.io/en/master/topics/development/contributing.html)
42-
- [Join our Community Slack](https://via.vmw.com/salt-slack)
43-
- [IRC on LiberaChat](https://web.libera.chat/#salt)
39+
- [Join our Community Discord](https://discord.com/invite/J7b7EscrAs)
4440
- [Salt Project YouTube channel](https://www.youtube.com/channel/UCpveTIucFx9ljGelW63-BWg)
45-
- [Salt Project Twitch channel](https://www.twitch.tv/saltprojectoss)
41+
- [Community Wiki](https://github.com/saltstack/community/wiki)
4642
4743
There are lots of ways to get involved in our community. Every month, there are around a dozen
4844
opportunities to meet with other contributors and the Salt Core team and collaborate in real
4945
time. The best way to keep track is by subscribing to the Salt Community Events Calendar.
5046
51-
If you have additional questions, email us at saltproject@vmware.com. We’re glad
47+
If you have additional questions, email us at saltproject.pdl@broadcom.com. We’re glad
5248
you’ve joined our community and look forward to doing awesome things with
5349
you!
5450

.github/workflows/backport.yml

+2
Original file line numberDiff line numberDiff line change
@@ -20,12 +20,14 @@ jobs:
2020
github.event.pull_request.merged == true
2121
&& (
2222
contains(github.event.pull_request.labels.*.name, 'backport:master') ||
23+
contains(github.event.pull_request.labels.*.name, 'backport:3007.x') ||
2324
contains(github.event.pull_request.labels.*.name, 'backport:3006.x') ||
2425
contains(github.event.pull_request.labels.*.name, 'backport:3005.x')
2526
)
2627
&& (
2728
(github.event.action == 'labeled' && (
2829
contains(github.event.pull_request.labels.*.name, 'backport:master') ||
30+
contains(github.event.pull_request.labels.*.name, 'backport:3007.x') ||
2931
contains(github.event.pull_request.labels.*.name, 'backport:3006.x') ||
3032
contains(github.event.pull_request.labels.*.name, 'backport:3005.x')
3133
))

0 commit comments

Comments
 (0)