revision: 3006.1_1
This commit is contained in:
committed by
Carlos D. Álvaro
parent
377b36ce59
commit
83214cc23b
2
.github/ISSUE_TEMPLATE/bug_report.md
vendored
2
.github/ISSUE_TEMPLATE/bug_report.md
vendored
@@ -27,7 +27,7 @@ The full log with the outputted error.
|
|||||||
|
|
||||||
- Host OS: [e.g. `uname -a`]
|
- Host OS: [e.g. `uname -a`]
|
||||||
- Docker: [e.g. `docker --version`]
|
- Docker: [e.g. `docker --version`]
|
||||||
- Image tag: [e.g. `3006.1`]
|
- Image tag: [e.g. `3006.1_1`]
|
||||||
|
|
||||||
**Additional context**
|
**Additional context**
|
||||||
Add any other context about the problem here.
|
Add any other context about the problem here.
|
||||||
|
|||||||
2
.github/workflows/linter.yml
vendored
2
.github/workflows/linter.yml
vendored
@@ -16,7 +16,7 @@ jobs:
|
|||||||
fetch-depth: 0
|
fetch-depth: 0
|
||||||
|
|
||||||
- name: Lint code base
|
- name: Lint code base
|
||||||
uses: github/super-linter@v5.0.0
|
uses: github/super-linter@v5
|
||||||
env:
|
env:
|
||||||
VALIDATE_ALL_CODEBASE: false
|
VALIDATE_ALL_CODEBASE: false
|
||||||
VALIDATE_DOCKERFILE_HADOLINT: true
|
VALIDATE_DOCKERFILE_HADOLINT: true
|
||||||
|
|||||||
10
.github/workflows/publish.yml
vendored
10
.github/workflows/publish.yml
vendored
@@ -29,7 +29,6 @@ jobs:
|
|||||||
tags: ${{ steps.tags.outputs.tags }}
|
tags: ${{ steps.tags.outputs.tags }}
|
||||||
vcs_ref: ${{ steps.vcs_ref.outputs.vcs_ref }}
|
vcs_ref: ${{ steps.vcs_ref.outputs.vcs_ref }}
|
||||||
created_on: ${{ steps.created_on.outputs.created_on }}
|
created_on: ${{ steps.created_on.outputs.created_on }}
|
||||||
salt_version: ${{ steps.salt_version.outputs.salt_version }}
|
|
||||||
steps:
|
steps:
|
||||||
- name: Checkout repository
|
- name: Checkout repository
|
||||||
uses: actions/checkout@v3
|
uses: actions/checkout@v3
|
||||||
@@ -66,13 +65,6 @@ jobs:
|
|||||||
echo "Created on: ${CREATED_ON}"
|
echo "Created on: ${CREATED_ON}"
|
||||||
echo "created_on=${CREATED_ON}" >> $GITHUB_OUTPUT
|
echo "created_on=${CREATED_ON}" >> $GITHUB_OUTPUT
|
||||||
|
|
||||||
- name: Salt Version
|
|
||||||
id: salt_version
|
|
||||||
run: |
|
|
||||||
SALT_VERSION=$(cat VERSION)
|
|
||||||
echo "Salt Version: ${SALT_VERSION}"
|
|
||||||
echo "salt_version=${SALT_VERSION}"
|
|
||||||
|
|
||||||
- name: Dump environment
|
- name: Dump environment
|
||||||
if: contains(toJSON(github.event.commits.*.message), 'ci(debug)') == true
|
if: contains(toJSON(github.event.commits.*.message), 'ci(debug)') == true
|
||||||
run: env | sort
|
run: env | sort
|
||||||
@@ -147,7 +139,7 @@ jobs:
|
|||||||
VCS_REF=${{ needs.metadata.outputs.vcs_ref }}
|
VCS_REF=${{ needs.metadata.outputs.vcs_ref }}
|
||||||
BUILD_DATE=${{ needs.metadata.outputs.created_on }}
|
BUILD_DATE=${{ needs.metadata.outputs.created_on }}
|
||||||
outputs: |
|
outputs: |
|
||||||
type=image,annotation-index.org.opencontainers.image.description=salt-master ${{ needs.metadata.outputs.salt_version }} containerized
|
type=image,annotation-index.org.opencontainers.image.description=https://github.com/cdalvaro/docker-salt-master
|
||||||
cache-from: |
|
cache-from: |
|
||||||
type=local,src=${{ env.CACHE_PATH }}
|
type=local,src=${{ env.CACHE_PATH }}
|
||||||
ghcr.io/cdalvaro/docker-salt-master:latest
|
ghcr.io/cdalvaro/docker-salt-master:latest
|
||||||
|
|||||||
@@ -4,6 +4,11 @@ This file only reflects the changes that are made in this image.
|
|||||||
Please refer to the [Salt 3006.1 Release Notes](https://docs.saltstack.com/en/latest/topics/releases/3006.1.html)
|
Please refer to the [Salt 3006.1 Release Notes](https://docs.saltstack.com/en/latest/topics/releases/3006.1.html)
|
||||||
for the list of changes in SaltStack.
|
for the list of changes in SaltStack.
|
||||||
|
|
||||||
|
**3006.1_1**
|
||||||
|
|
||||||
|
- Stream `salt-master` output to stdout and stderr.
|
||||||
|
- Do not capture `salt-api` output with supervisord.
|
||||||
|
|
||||||
**3006.1**
|
**3006.1**
|
||||||
|
|
||||||
- Upgrade `salt-master` to `3006.1` *Sulfur*.
|
- Upgrade `salt-master` to `3006.1` *Sulfur*.
|
||||||
|
|||||||
@@ -5,7 +5,7 @@ ARG VCS_REF
|
|||||||
|
|
||||||
# https://github.com/saltstack/salt/releases
|
# https://github.com/saltstack/salt/releases
|
||||||
ENV SALT_VERSION="3006.1"
|
ENV SALT_VERSION="3006.1"
|
||||||
ENV IMAGE_VERSION="${SALT_VERSION}"
|
ENV IMAGE_VERSION="${SALT_VERSION}_1"
|
||||||
|
|
||||||
ENV SALT_DOCKER_DIR="/etc/docker-salt" \
|
ENV SALT_DOCKER_DIR="/etc/docker-salt" \
|
||||||
SALT_ROOT_DIR="/etc/salt" \
|
SALT_ROOT_DIR="/etc/salt" \
|
||||||
|
|||||||
Reference in New Issue
Block a user