Skip to content

Commit aca2334

Browse files
Release cortex chart v0.0.5 to all bundles (#446)
Change summary - Improved alerts and dashboards - Initial support for pod scheduling - Use hypervisor crd for filtering
2 parents 77dee05 + 5494e15 commit aca2334

File tree

443 files changed

+10591
-12319
lines changed

Some content is hidden

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

443 files changed

+10591
-12319
lines changed

.dockerignore

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
# Copyright 2025 SAP SE
1+
# Copyright SAP SE
22
# SPDX-License-Identifier: Apache-2.0
33

44
/.dockerignore

.github/workflows/codeql.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
# Edit Makefile.maker.yaml instead. #
44
################################################################################
55

6-
# SPDX-FileCopyrightText: Copyright 2024 SAP SE
6+
# SPDX-FileCopyrightText: Copyright SAP SE
77
# SPDX-License-Identifier: Apache-2.0
88

99
name: CodeQL

.github/workflows/push-images.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
# Copyright 2025 SAP SE
1+
# Copyright SAP SE
22
# SPDX-License-Identifier: Apache-2.0
33

44
name: Build and Push Docker Images

.github/workflows/reuse.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
# SPDX-FileCopyrightText: Copyright 2024 SAP SE or an SAP affiliate company and cobaltcore-dev contributors
1+
# SPDX-FileCopyrightText: Copyright SAP SE or an SAP affiliate company and cobaltcore-dev contributors
22
#
33
# SPDX-License-Identifier: Apache-2.0
44

.github/workflows/stale.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
# SPDX-FileCopyrightText: Copyright 2024 SAP SE or an SAP affiliate company and cobaltcore-dev contributors
1+
# SPDX-FileCopyrightText: Copyright SAP SE or an SAP affiliate company and cobaltcore-dev contributors
22
#
33
# SPDX-License-Identifier: Apache-2.0
44

.github/workflows/test.yaml

Lines changed: 7 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
# Copyright 2025 SAP SE
1+
# Copyright SAP SE
22
# SPDX-License-Identifier: Apache-2.0
33

44
name: Test and Report Coverage
@@ -47,12 +47,12 @@ jobs:
4747
4848
echo "Running tests..."
4949
go test -v \
50-
-coverpkg=./... \
51-
-coverprofile=profile.cov ./...
50+
-coverpkg=./internal/... \
51+
-coverprofile=profile.cov ./internal/...
5252
go tool cover -func profile.cov > func_coverage.txt
5353
5454
- name: Upload coverage files
55-
uses: actions/upload-artifact@v5
55+
uses: actions/upload-artifact@v6
5656
with:
5757
name: pr-func-coverage
5858
path: |
@@ -80,13 +80,15 @@ jobs:
8080
}
8181
- name: Download coverage files (PR only)
8282
if: ${{ github.event_name == 'pull_request' }}
83-
uses: actions/download-artifact@v6
83+
uses: actions/download-artifact@v7
8484
with:
8585
name: pr-func-coverage
8686
path: .
8787
- name: Post coverage comment (PR only)
8888
if: ${{ github.event_name == 'pull_request' }}
8989
uses: actions/github-script@v8
90+
# For external contributors, posting comments fail due to permission issues.
91+
continue-on-error: true
9092
with:
9193
script: |
9294
const fs = require('fs');

.golangci.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
# Copyright 2024 SAP SE
1+
# Copyright SAP SE
22
# SPDX-License-Identifier: Apache-2.0
33

44
version: "2"

CONTRIBUTING.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
<!--
2-
# SPDX-FileCopyrightText: Copyright 2024 SAP SE or an SAP affiliate company and cobaltcore-dev contributors
2+
# SPDX-FileCopyrightText: Copyright SAP SE or an SAP affiliate company and cobaltcore-dev contributors
33
#
44
# SPDX-License-Identifier: Apache-2.0
55
-->

LICENSE

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -186,7 +186,7 @@
186186
same "printed page" as the copyright notice for easier
187187
identification within third-party archives.
188188

189-
Copyright 2024 SAP SE or an SAP affiliate company and cobaltcore-dev contributors
189+
Copyright SAP SE or an SAP affiliate company and cobaltcore-dev contributors
190190

191191
Licensed under the Apache License, Version 2.0 (the "License");
192192
you may not use this file except in compliance with the License.

Makefile

Lines changed: 0 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -22,10 +22,6 @@ dekustomize:
2222
if [ -d "dist/chart/templates/metrics" ]; then \
2323
cp -r dist/chart/templates/metrics "$$TEMP_DIR/metrics"; \
2424
fi; \
25-
if [ -n "$$(ls dist/chart/templates/crd/compute*.yaml 2>/dev/null)" ]; then \
26-
mkdir -p "$$TEMP_DIR/crd"; \
27-
cp dist/chart/templates/crd/compute*.yaml "$$TEMP_DIR/crd/"; \
28-
fi; \
2925
if [ -d ".github" ]; then \
3026
cp -r .github "$$TEMP_DIR/github"; \
3127
fi; \
@@ -44,9 +40,6 @@ dekustomize:
4440
rm -rf dist/chart/templates/metrics; \
4541
cp -r "$$TEMP_DIR/metrics" dist/chart/templates/metrics; \
4642
fi; \
47-
if [ -d "$$TEMP_DIR/crd" ]; then \
48-
cp "$$TEMP_DIR/crd"/compute*.yaml dist/chart/templates/crd/; \
49-
fi; \
5043
if [ -d "$$TEMP_DIR/github" ]; then \
5144
rm -rf .github; \
5245
cp -r "$$TEMP_DIR/github" .github; \

0 commit comments

Comments
 (0)