-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Chris Hain
committed
Oct 21, 2024
1 parent
3381eba
commit d8cd820
Showing
5 changed files
with
98 additions
and
2 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 |
---|---|---|
@@ -0,0 +1,11 @@ | ||
# Grafana Environment Variables, update these with secure values | ||
GF_SECURITY_ADMIN_USER=admin | ||
GF_SECURITY_ADMIN_PASSWORD=admin | ||
|
||
# Install the required datasource plugin | ||
GF_INSTALL_PLUGINS=grafana-clickhouse-datasource | ||
|
||
# Passwords for the Clickhouse users, update these with secure values | ||
OTEL_COLLECTOR_CLICKHOUSE_PASSWORD=SET_THIS_TO_YOUR_VALUE | ||
GRAFANA_CLICKHOUSE_PASSWORD=SET_THIS_TO_YOUR_VALUE | ||
ANALYZER_CLICKHOUSE_PASSWORD=SET_THIS_TO_YOUR_VALUE |
Validating CODEOWNERS rules …
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,15 @@ | ||
# Lines starting with '#' are comments. | ||
# Each line is a file pattern followed by one or more owners. | ||
|
||
# More details are here: https://help.github.com/articles/about-codeowners/ | ||
|
||
# The '*' pattern is global owners. | ||
|
||
# Order is important. The last matching pattern has the most precedence. | ||
# The folders are ordered as follows: | ||
|
||
# In each subsection folders are ordered first by depth, then alphabetically. | ||
# This should make it easy to add new rules without breaking existing ones. | ||
|
||
# Global rule: | ||
* @f5devcentral/application-study-tool-owners |
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,33 @@ | ||
--- | ||
name: Bug report | ||
about: Create a report to help us improve | ||
title: '' | ||
labels: '' | ||
assignees: '' | ||
|
||
--- | ||
|
||
**Describe the bug** | ||
A clear and concise description of what the bug is. | ||
|
||
**To Reproduce** | ||
Steps to reproduce the behavior: | ||
1. Go to '...' (Which dashboards / panels it effects. ) | ||
2. Click on '....' | ||
3. Scroll down to '....' | ||
4. See error | ||
|
||
**Expected behavior** | ||
A clear and concise description of what you expected to happen. | ||
|
||
**Screenshots** | ||
If applicable, add screenshots to help explain your problem. | ||
|
||
**Desktop (please complete the following information):** | ||
- OS: [e.g. iOS] | ||
- Browser [e.g. chrome, safari] | ||
- Version [e.g. 22] | ||
|
||
**Additional context** | ||
Add any other context about the problem here | ||
|
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,37 @@ | ||
name: Push Image to ghcr.io | ||
run-name: ${{ github.actor }} is running this workflow | ||
on: | ||
push: | ||
tags: | ||
- 'v[0-9]+.[0-9]+.[0-9]+' | ||
jobs: | ||
Pull-From_Gitlab: | ||
runs-on: ubuntu-latest | ||
steps: | ||
- name: "Checkout source code" | ||
uses: "actions/checkout@v1" | ||
- name: Login to GitLab | ||
uses: docker/login-action@v3 | ||
with: | ||
registry: registry.gitlab.com | ||
username: ${{ secrets.GITLAB_USERNAME }} | ||
password: ${{ secrets.GITLAB_PASSWORD }} | ||
- name: Set variables | ||
run: | | ||
VER=$(cat VERSION) | ||
echo "VERSION=$VER" >> $GITHUB_ENV | ||
- name: Pull Gitlab Image | ||
run: docker pull registry.gitlab.com/f5/greenhouse/apps/api-discovery-log-analyzer/api_discovery_log_analyzer:${{ env.VERSION }} | ||
- name: Login to GitHub Container Registry | ||
uses: docker/login-action@v3 | ||
with: | ||
registry: ghcr.io | ||
username: ${{ github.actor }} | ||
password: ${{ secrets.GITHUB_TOKEN }} | ||
- name: Push to Github | ||
run: | ||
| | ||
docker tag registry.gitlab.com/f5/greenhouse/apps/api-discovery-log-analyzer/api_discovery_log_analyzer:${{ env.VERSION }} ghcr.io/f5devcentral/ast-api-discovery/api_discovery_log_analyzer/api_discovery_log_analyzer:${{ env.VERSION }} | ||
docker tag registry.gitlab.com/f5/greenhouse/apps/api-discovery-log-analyzer/api_discovery_log_analyzer:${{ env.VERSION }} ghcr.io/f5devcentral/ast-api-discovery/api_discovery_log_analyzer/api_discovery_log_analyzer:latest | ||
docker push ghcr.io/f5devcentral/ast-api-discovery/api_discovery_log_analyzer/api_discovery_log_analyzer:${{ env.VERSION }} | ||
docker push ghcr.io/f5devcentral/ast-api-discovery/api_discovery_log_analyzer/api_discovery_log_analyzer:latest |
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