-
Notifications
You must be signed in to change notification settings - Fork 11
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Add config option to disable reporting (#202)
* Add config option to disable reporting * Update snap revs * Write config file before snap install * Patch instead of symlink
- Loading branch information
Showing
10 changed files
with
296 additions
and
389 deletions.
There are no files selected for viewing
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,46 @@ | ||
--- charmcraft-22.04.yaml 2024-11-19 21:09:07.305181162 +0000 | ||
+++ charmcraft-24.04.yaml 2024-11-19 21:09:07.305181162 +0000 | ||
@@ -15,39 +15,10 @@ | ||
source: https://github.com/canonical/grafana-agent-operator | ||
issues: https://github.com/canonical/grafana-agent-operator/issues | ||
|
||
-bases: | ||
- - build-on: | ||
- - name: "ubuntu" | ||
- channel: "22.04" | ||
- architectures: ["arm64"] | ||
- run-on: | ||
- - name: "ubuntu" | ||
- channel: "22.04" | ||
- architectures: ["arm64"] | ||
- - build-on: | ||
- - name: "ubuntu" | ||
- channel: "20.04" | ||
- architectures: ["arm64"] | ||
- run-on: | ||
- - name: "ubuntu" | ||
- channel: "20.04" | ||
- architectures: ["arm64"] | ||
- - build-on: | ||
- - name: "ubuntu" | ||
- channel: "22.04" | ||
- architectures: ["amd64"] | ||
- run-on: | ||
- - name: "ubuntu" | ||
- channel: "22.04" | ||
- architectures: ["amd64"] | ||
- - build-on: | ||
- - name: "ubuntu" | ||
- channel: "20.04" | ||
- architectures: ["amd64"] | ||
- run-on: | ||
- - name: "ubuntu" | ||
- channel: "20.04" | ||
- architectures: ["amd64"] | ||
+base: [email protected] | ||
+platforms: | ||
+ amd64: | ||
+ arm64: | ||
|
||
parts: | ||
charm: |
Oops, something went wrong.