-
Notifications
You must be signed in to change notification settings - Fork 3.5k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Showing
4,949 changed files
with
626,617 additions
and
250,882 deletions.
The diff you're trying to view is too large. We only load the first 3000 changed files.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,22 @@ | ||
name: Setup K3D Cluster | ||
description: Setup a K3D cluster | ||
|
||
runs: | ||
using: "composite" | ||
steps: | ||
|
||
- name: Install k3d | ||
shell: bash | ||
run: | | ||
curl -s https://raw.githubusercontent.com/rancher/k3d/main/install.sh | bash | ||
- name: Create k3d cluster with local registry | ||
shell: bash | ||
run: | | ||
k3d registry create registry.local --port 5000 | ||
k3d cluster create k3d-cluster --registry-use k3d-registry.local:5000 | ||
- name: Set kubectl context to k3d cluster | ||
shell: bash | ||
run: | | ||
k3d kubeconfig merge k3d-cluster --kubeconfig-switch-context |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,91 @@ | ||
{ | ||
"$schema": "https://docs.renovatebot.com/renovate-schema.json", | ||
"extends": [ | ||
"config:recommended" | ||
], | ||
"labels": [ | ||
"dependencies" | ||
], | ||
"prHourlyLimit": 4, | ||
"baseBranches": [ | ||
"main" | ||
], | ||
"packageRules": [ | ||
{ | ||
"matchBaseBranches": [ | ||
"release-2.9.x", | ||
"release-2.8.x" | ||
], | ||
"enabled": false, | ||
"matchPackageNames": [ | ||
"*" | ||
] | ||
}, | ||
{ | ||
// Disable Go version updates | ||
"matchManagers": ["gomod"], | ||
"matchPackageNames": ["go", "toolchain"], | ||
"enabled": false | ||
}, | ||
{ | ||
// Disable Go and loki-build-image updates for Dockerfiles | ||
"matchManagers": ["dockerfile"], | ||
"matchPackageNames": ["golang", "grafana/loki-build-image"], | ||
"enabled": false | ||
}, | ||
{ | ||
// Don't automatically merge GitHub Actions updates | ||
"matchManagers": ["github-actions"], | ||
"enabled": true, | ||
"matchUpdateTypes": ["major", "minor", "patch"], | ||
"autoApprove": false, | ||
"automerge": false | ||
}, | ||
{ | ||
// Separate out Helm updates from other dependencies | ||
// Don't automatically merge Helm updates | ||
// Updates to this require the docs to be updated | ||
"matchManagers": ["helm-requirements", "helm-values", "helmv3"], | ||
"groupName": "helm-{{packageName}}", | ||
"matchUpdateTypes": ["major", "minor", "patch"], | ||
"matchPackageNames": ["!grafana/loki"], // This is updated via a different job | ||
"autoApprove": false, | ||
"automerge": false | ||
}, | ||
{ | ||
// Disable operator updates | ||
"matchFileNames": ["operator/go.mod", "operator/api/loki/go.mod"], | ||
"enabled": false, | ||
"autoApprove": false, | ||
"automerge": false | ||
}, | ||
{ | ||
// Enable all other updates | ||
"matchFileNames": ["!operator/go.mod", "!operator/api/loki/go.mod"], | ||
"groupName": "{{packageName}}", | ||
"enabled": true, | ||
"matchUpdateTypes": ["major", "minor", "patch"], | ||
// After we have tested the above configuration, we can enable the following | ||
"automerge": false, | ||
"autoApprove": false | ||
} | ||
], | ||
"digest": { | ||
"enabled": false | ||
}, | ||
"vulnerabilityAlerts": { | ||
"enabled": true, | ||
"addLabels": [ | ||
"area/security" | ||
] | ||
}, | ||
"osvVulnerabilityAlerts": true, | ||
"prConcurrentLimit": 10, | ||
"rebaseWhen": "conflicted", | ||
"branchPrefix": "deps-update/", | ||
"postUpdateOptions": [ | ||
"gomodTidy" | ||
], | ||
"semanticCommitType": "fix", | ||
"semanticCommitScope": "deps" | ||
} |
78 changes: 78 additions & 0 deletions
78
.github/vendor/github.com/grafana/loki-release/workflows/build.libsonnet
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
5 changes: 4 additions & 1 deletion
5
.github/vendor/github.com/grafana/loki-release/workflows/main.jsonnet
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
Oops, something went wrong.