Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
I
influxdb
Project
Project
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
1
Merge Requests
1
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Registry
Registry
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
Jacklull
influxdb
Commits
3b591c09
Unverified
Commit
3b591c09
authored
Feb 24, 2020
by
Naseem
Browse files
Options
Browse Files
Download
Plain Diff
Merge remote-tracking branch 'upstream/master' into backup-restore-readme
parents
1f04f01c
b1671f54
Show whitespace changes
Inline
Side-by-side
Showing
8 changed files
with
16 additions
and
17 deletions
+16
-17
terraform.yaml
.github/workflows/terraform.yaml
+5
-5
Chart.yaml
charts/chronograf/Chart.yaml
+1
-1
deployment.yaml
charts/chronograf/templates/deployment.yaml
+4
-1
Chart.yaml
charts/kapacitor/Chart.yaml
+1
-1
Chart.yaml
charts/telegraf/Chart.yaml
+1
-1
CODEOWNERS
terraform/CODEOWNERS
+1
-1
main.tf
terraform/main.tf
+1
-5
repository.tf
terraform/repository.tf
+2
-2
No files found.
.github/workflows/terraform.yaml
View file @
3b591c09
name
:
Terraform
name
:
Repository Configuration with
Terraform
on
:
push
:
...
...
@@ -17,7 +17,7 @@ jobs:
-
name
:
"
Terraform
Format"
uses
:
hashicorp/terraform-github-actions@master
with
:
tf_actions_version
:
0.12.
13
tf_actions_version
:
0.12.
20
tf_actions_subcommand
:
"
fmt"
tf_actions_working_dir
:
"
terraform"
env
:
...
...
@@ -26,7 +26,7 @@ jobs:
-
name
:
"
Terraform
Init"
uses
:
hashicorp/terraform-github-actions@master
with
:
tf_actions_version
:
0.12.
13
tf_actions_version
:
0.12.
20
tf_actions_subcommand
:
"
init"
tf_actions_working_dir
:
"
terraform"
env
:
...
...
@@ -36,7 +36,7 @@ jobs:
-
name
:
"
Terraform
Validate"
uses
:
hashicorp/terraform-github-actions@master
with
:
tf_actions_version
:
0.12.
13
tf_actions_version
:
0.12.
20
tf_actions_subcommand
:
"
validate"
tf_actions_working_dir
:
"
terraform"
env
:
...
...
@@ -45,7 +45,7 @@ jobs:
-
name
:
"
Terraform
Plan"
uses
:
hashicorp/terraform-github-actions@master
with
:
tf_actions_version
:
0.12.
13
tf_actions_version
:
0.12.
20
tf_actions_subcommand
:
"
plan"
tf_actions_working_dir
:
"
terraform"
env
:
...
...
charts/chronograf/Chart.yaml
View file @
3b591c09
apiVersion
:
v1
name
:
chronograf
version
:
1.1.
3
version
:
1.1.
4
appVersion
:
1.7.12
description
:
Open-source web application written in Go and React.js that provides
the tools to visualize your monitoring data and easily create alerting and automation
...
...
charts/chronograf/templates/deployment.yaml
View file @
3b591c09
apiVersion
:
extensions/v1beta
1
apiVersion
:
apps/v
1
kind
:
Deployment
metadata
:
name
:
{{
template "chronograf.fullname" .
}}
...
...
@@ -9,6 +9,9 @@ metadata:
heritage
:
"
{{
.Release.Service
}}"
spec
:
replicas
:
{{
.Values.service.replicas
}}
selector
:
matchLabels
:
app
:
{{
template "chronograf.fullname" .
}}
template
:
metadata
:
labels
:
...
...
charts/kapacitor/Chart.yaml
View file @
3b591c09
apiVersion
:
v1
name
:
kapacitor
version
:
1.2.
3
version
:
1.2.
4
appVersion
:
1.5.3
description
:
InfluxDB's native data processing engine. It can process both stream
and batch data from InfluxDB.
...
...
charts/telegraf/Chart.yaml
View file @
3b591c09
apiVersion
:
v1
name
:
telegraf
version
:
1.7.
2
version
:
1.7.
3
appVersion
:
1.13
deprecated
:
false
description
:
Telegraf is an agent written in Go for collecting, processing, aggregating, and writing metrics.
...
...
terraform/CODEOWNERS
View file @
3b591c09
* @rawkode
* @rawkode
@gitirabassi
terraform/main.tf
View file @
3b591c09
...
...
@@ -8,8 +8,8 @@ provider "google" {
}
provider "github" {
token = var.github_token
organization = "influxdata"
anonymous = false
}
terraform {
...
...
@@ -18,7 +18,3 @@ terraform {
prefix = "github.com/helm-charts"
}
}
variable "github_token" {
type = string
}
terraform/repository.tf
View file @
3b591c09
...
...
@@ -3,7 +3,8 @@ resource "github_repository" "helm_charts" {
description = "Official Helm Chart Repository for InfluxData Applications"
allow_merge_commit = false
allow_rebase_merge = false
allow_squash_merge = false
allow_rebase_merge = true
has_downloads = true
has_issues = true
...
...
@@ -34,4 +35,3 @@ resource "github_issue_label" "types" {
repository = github_repository.helm_charts.name
color = var.colour_dark_blue
}
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment