Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

feat: certify sumo images #94

Merged
merged 2 commits into from
Jun 21, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions .github/workflows/run_manually.yml
Original file line number Diff line number Diff line change
Expand Up @@ -50,6 +50,7 @@ jobs:
run: make install_preflight
- name: Build push
run: |
BIN=./bin/ \
PYAXIS_API_TOKEN="${PYAXIS_API_TOKEN=}" \
ACTION="${ACTION}" \
NAME="${NAME}" \
Expand Down
4 changes: 1 addition & 3 deletions scripts/build-push-all.sh
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,6 @@ readonly ACTION="${ACTION:-${ACTION_BUILD}}"
readonly BIN="./bin/"
## exprot BIN so it can be used in sub-scripts
export BIN
readonly EXTERNAL_IMAGES="(sumologic-otel-collector|kubernetes-setup|kubernetes-tools-kubectl|tailing-sidecar-operator|tailing-sidecar)"

if ! [[ "$ACTION" =~ ${ACTION_BUILD}|${ACTION_PUSH}|${ACTION_CHECK}|${ACTION_CERTIFY} ]]; then
echo "ACTION should be '${ACTION_BUILD}', '${ACTION_PUSH}', '${ACTION_CHECK}' or ${ACTION_CERTIFY}"
Expand All @@ -26,8 +25,7 @@ fi
IMAGES=$(./scripts/list-images.py \
--fetch-base \
--values scripts/values.yaml \
--version "${HELM_CHART_VERSION}" \
| grep -vE "\/${EXTERNAL_IMAGES}:")
--version "${HELM_CHART_VERSION}")

for IMAGE in ${IMAGES}; do
# Treat everything after `:` as version
Expand Down
Loading