-
Notifications
You must be signed in to change notification settings - Fork 2.1k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge remote-tracking branch 'origin/master' into HEAD
Signed-off-by: Giedrius Statkevičius <[email protected]>
- Loading branch information
Showing
110 changed files
with
6,031 additions
and
1,141 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 |
---|---|---|
@@ -1,21 +1,26 @@ | ||
# NOTE: Current plan gives 1500 build minutes per month. | ||
version: 2 | ||
# https://circleci.com/blog/circleci-hacks-reuse-yaml-in-your-circleci-config-with-yaml/ | ||
defaults: &defaults | ||
docker: | ||
# Built by Thanos make docker-ci | ||
- image: &default-docker-image quay.io/thanos/thanos-ci:v1.2-go1.15-node | ||
version: 2.1 | ||
|
||
jobs: | ||
test: | ||
orbs: | ||
go: circleci/[email protected] | ||
|
||
executors: | ||
golang: | ||
docker: | ||
- image: *default-docker-image | ||
- image: cimg/go:1.15-node | ||
golang-test: | ||
docker: | ||
- image: cimg/go:1.15-node | ||
- image: beaukode/docker-swift-onlyone-authv2-keystone | ||
working_directory: /go/src/github.com/thanos-io/thanos | ||
|
||
jobs: | ||
test: | ||
executor: golang-test | ||
environment: | ||
GO111MODULE: 'on' | ||
steps: | ||
- checkout | ||
- go/mod-download-cached | ||
- setup_remote_docker: | ||
version: 17.07.0-ce | ||
- run: | ||
|
@@ -30,7 +35,6 @@ jobs: | |
- run: | ||
name: "Run unit tests." | ||
environment: | ||
GOBIN: "/go/bin" | ||
THANOS_TEST_OBJSTORE_SKIP: AZURE,COS,ALIYUNOSS | ||
# Variables for Swift testing. | ||
OS_AUTH_URL: http://127.0.0.1:5000/v2.0 | ||
|
@@ -65,12 +69,10 @@ jobs: | |
- .build | ||
|
||
publish_master: | ||
<<: *defaults | ||
working_directory: /go/src/github.com/thanos-io/thanos | ||
environment: | ||
GOBIN: "/go/bin" | ||
executor: golang | ||
steps: | ||
- checkout | ||
- go/mod-download-cached | ||
- setup_remote_docker: | ||
version: 17.07.0-ce | ||
- attach_workspace: | ||
|
@@ -85,12 +87,10 @@ jobs: | |
- run: make docker-push | ||
|
||
publish_release: | ||
<<: *defaults | ||
working_directory: /go/src/github.com/thanos-io/thanos | ||
environment: | ||
GOBIN: "/go/bin" | ||
executor: golang | ||
steps: | ||
- checkout | ||
- go/mod-download-cached | ||
- setup_remote_docker: | ||
version: 17.07.0-ce | ||
- attach_workspace: | ||
|
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,67 @@ | ||
# For most projects, this workflow file will not need changing; you simply need | ||
# to commit it to your repository. | ||
# | ||
# You may wish to alter this file to override the set of languages analyzed, | ||
# or to provide custom queries or build logic. | ||
# | ||
# ******** NOTE ******** | ||
# We have attempted to detect the languages in your repository. Please check | ||
# the `language` matrix defined below to confirm you have the correct set of | ||
# supported CodeQL languages. | ||
# | ||
name: "CodeQL" | ||
|
||
on: | ||
push: | ||
branches: [ master ] | ||
pull_request: | ||
# The branches below must be a subset of the branches above | ||
branches: [ master ] | ||
schedule: | ||
- cron: '30 12 * * 1' | ||
|
||
jobs: | ||
analyze: | ||
name: Analyze | ||
runs-on: ubuntu-latest | ||
|
||
strategy: | ||
fail-fast: false | ||
matrix: | ||
language: [ 'go', 'javascript' ] | ||
# CodeQL supports [ 'cpp', 'csharp', 'go', 'java', 'javascript', 'python' ] | ||
# Learn more: | ||
# https://docs.github.com/en/free-pro-team@latest/github/finding-security-vulnerabilities-and-errors-in-your-code/configuring-code-scanning#changing-the-languages-that-are-analyzed | ||
|
||
steps: | ||
- name: Checkout repository | ||
uses: actions/checkout@v2 | ||
|
||
# Initializes the CodeQL tools for scanning. | ||
- name: Initialize CodeQL | ||
uses: github/codeql-action/init@v1 | ||
with: | ||
languages: ${{ matrix.language }} | ||
# If you wish to specify custom queries, you can do so here or in a config file. | ||
# By default, queries listed here will override any specified in a config file. | ||
# Prefix the list here with "+" to use these queries and those in the config file. | ||
# queries: ./path/to/local/query, your-org/your-repo/queries@main | ||
|
||
# Autobuild attempts to build any compiled languages (C/C++, C#, or Java). | ||
# If this step fails, then you should remove it and run the build manually (see below) | ||
- name: Autobuild | ||
uses: github/codeql-action/autobuild@v1 | ||
|
||
# ℹ️ Command-line programs to run using the OS shell. | ||
# 📚 https://git.io/JvXDl | ||
|
||
# ✏️ If the Autobuild fails above, remove it and uncomment the following three lines | ||
# and modify them (or add more) to build your code if your project | ||
# uses a compiled language | ||
|
||
#- run: | | ||
# make bootstrap | ||
# make release | ||
|
||
- name: Perform CodeQL Analysis | ||
uses: github/codeql-action/analyze@v1 |
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,5 +1,5 @@ | ||
go: | ||
version: 1.15.0 | ||
version: 1.15 | ||
repository: | ||
path: github.com/thanos-io/thanos | ||
build: | ||
|
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 |
---|---|---|
|
@@ -3,17 +3,18 @@ | |
| Name | Email | Slack | GitHub | Company | | ||
|-----------------------|------------------------|--------------------------|---------------------------------------------|-------------------| | ||
| Bartłomiej Płotka | [email protected] | `@bwplotka` | [@bwplotka](https://github.com/bwplotka) | Red Hat | | ||
| Frederic Branczyk | [email protected] | `@brancz` | [@brancz](https://github.com/brancz) | Red Hat | | ||
| Frederic Branczyk | [email protected] | `@brancz` | [@brancz](https://github.com/brancz) | Polar Signals | | ||
| Giedrius Statkevičius | [email protected] | `@Giedrius Statkevičius` | [@GiedriusS](https://github.com/GiedriusS) | AdForm | | ||
| Kemal Akkoyun | [email protected] | `@kakkoyun` | [@kakkoyun](https://github.com/kakkoyun) | Red Hat | | ||
| Lucas Servén Marín | [email protected] | `@squat` | [@squat](https://github.com/squat) | Red Hat | | ||
| Povilas Versockas | [email protected] | `@povilasv` | [@povilasv](https://github.com/povilasv) | Utility Warehouse | | ||
| Prem Saraswat | [email protected] | `@Prem Saraswat` | [@prmsrswt](https://github.com/prmsrswt) | Atlan | | ||
| Marco Pracucci | [email protected] | `@pracucci` | [@pracucci](https://github.com/pracucci) | Grafana Labs | | ||
| Matthias Loibl | [email protected] | `@metalmatze` | [@metalmatze](https://github.com/metalmatze)| Red Hat | | ||
| Ben Ye | [email protected] | `@yeya24` | [@yeya24](https://github.com/yeya24) | Red Hat | | ||
|
||
We are bunch of people from different companies with various interests and skills. | ||
We are from different parts of Europe: Germany, Italy, Lithuania, Poland, and UK and India. | ||
We are from different parts of the world: Germany, Italy, Lithuania, Poland, UK, India and China. | ||
We have something in common though: We all share the love for OpenSource, Go, Prometheus, :coffee: and Observability topics. | ||
|
||
As either Software Developers or SRE (or both!) we've chosen to maintain (mostly in our free time) Thanos, the de facto way to scale awesome [Prometheus](https://prometheus.io) project. | ||
|
@@ -34,7 +35,6 @@ Full list of triage persons is displayed below: | |
| Name | Slack | GitHub | | ||
|-----------------------|--------------------------|------------------------------------------------------------| | ||
| Adrien Fillon | `@Adrien F` | [@adrien-f](https://github.com/adrien-f) | | ||
| Ben Ye | `@yeya24` | [@yeya24](https://github.com/yeya24) | | ||
| Martin Chodur | `@FUSAKLA` | [@fusakla](https://github.com/fusakla) | | ||
| Michael Dai | `@jojohappy` | [@jojohappy](https://github.com/jojohappy) | | ||
| Xiang Dai | `@daixiang0` | [@daixiang0](https://github.com/daixiang0) | | ||
|
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 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
Oops, something went wrong.