-
Notifications
You must be signed in to change notification settings - Fork 397
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #1700 from grafana/feat/user-agent
feat: add user agent to requests made by operator
- Loading branch information
Showing
7 changed files
with
22 additions
and
4 deletions.
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 |
---|---|---|
|
@@ -72,7 +72,7 @@ jobs: | |
- name: Install ko | ||
uses: ko-build/[email protected] | ||
with: | ||
version: v0.13.0 | ||
version: v0.16.0 | ||
|
||
- name: Install chainsaw | ||
uses: kyverno/[email protected] | ||
|
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 |
---|---|---|
|
@@ -102,7 +102,7 @@ jobs: | |
|
||
- uses: ko-build/[email protected] | ||
with: | ||
version: v0.15.1 | ||
version: v0.16.0 | ||
|
||
- name: Install cosign | ||
uses: sigstore/[email protected] | ||
|
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,8 @@ | ||
builds: | ||
- id: grafana-operator | ||
dir: . | ||
main: . | ||
flags: | ||
- '-trimpath' | ||
ldflags: | ||
- -X github.com/grafana/grafana-operator/v5/embeds.Version={{.Git.Tag}} |
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,7 +1,11 @@ | ||
# Embeds | ||
|
||
This directory is used for embedding FS structs into go code. | ||
This package contains static information compiled into the binary at build time. | ||
|
||
# Grafonnet | ||
|
||
The Grafonnet Jsonnet is used to allow users to define their dashboards using the jsonnet framework. | ||
|
||
# Version | ||
|
||
The `Version` variable is set during production builds by `ko`. Configuration for this can be found in `.ko.yaml` |
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