Skip to content

Commit c713c0d

Browse files
committed
Renaming and fixing all links
1 parent 9b78158 commit c713c0d

7 files changed

Lines changed: 11 additions & 11 deletions

File tree

README.md

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,13 +1,13 @@
11

2-
# Deis Monitor v2
2+
# Hephy Monitor v2
33
[![Build Status](https://ci.deis.io/job/monitor/badge/icon)](https://ci.deis.io/job/monitor)
44
[![Docker Repository on Quay](https://quay.io/repository/deisci/grafana/status "Docker Repository on Quay")](https://quay.io/repository/deisci/grafana)
55
[![Docker Repository on Quay](https://quay.io/repository/deisci/influxdb/status "Docker Repository on Quay")](https://quay.io/repository/deisci/influxdb)
66
[![Docker Repository on Quay](https://quay.io/repository/deisci/telegraf/status "Docker Repository on Quay")](https://quay.io/repository/deisci/telegraf)
77

88
Deis (pronounced DAY-iss) Workflow is an open source Platform as a Service (PaaS) that adds a developer-friendly layer to any [Kubernetes](http://kubernetes.io) cluster, making it easy to deploy and manage applications on your own servers.
99

10-
For more information about the Deis Workflow, please visit the main project page at https://github.com/deisthree/workflow.
10+
For more information about the Deis Workflow, please visit the main project page at https://github.com/teamhephy/workflow.
1111

1212
We welcome your input! If you have feedback, please [submit an issue][issues]. If you'd like to participate in development, please read the "Development" section below and [submit a pull request][prs].
1313

@@ -54,7 +54,7 @@ Lastly, Grafana is a stand alone graphing application. It natively supports Infl
5454
```
5555

5656
[k8s-home]: http://kubernetes.io/
57-
[issues]: https://github.com/deisthree/monitor/issues
58-
[prs]: https://github.com/deisthree/monitor/pulls
59-
[v2.18]: https://github.com/deisthree/workflow/releases/tag/v2.18.0
57+
[issues]: https://github.com/teamhephy/monitor/issues
58+
[prs]: https://github.com/teamhephy/monitor/pulls
59+
[v2.18]: https://github.com/teamhephy/workflow/releases/tag/v2.18.0
6060

charts/monitor/Chart.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
name: monitor
2-
home: https://github.com/deisthree/monitor
2+
home: https://github.com/teamhephy/monitor
33
version: <Will be populated by the ci before publishing the chart>
44
description: Monitoring for Deis Workflow.
55
maintainers:

charts/monitor/charts/grafana/Chart.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
name: grafana
2-
home: https://github.com/deisthree/monitor/tree/master/grafana
2+
home: https://github.com/teamhephy/monitor/tree/master/grafana
33
version: <Will be populated by the ci before publishing the chart>
44
description: Monitoring for Deis Workflow.
55
maintainers:

charts/monitor/charts/influxdb/Chart.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
name: influxdb
2-
home: https://github.com/deisthree/monitor/tree/master/influxdb
2+
home: https://github.com/teamhephy/monitor/tree/master/influxdb
33
version: <Will be populated by the ci before publishing the chart>
44
description: Monitoring for Deis Workflow.
55
maintainers:

charts/monitor/charts/telegraf/Chart.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
name: telegraf
2-
home: https://github.com/deisthree/monitor/tree/master/telegraf
2+
home: https://github.com/teamhephy/monitor/tree/master/telegraf
33
version: <Will be populated by the ci before publishing the chart>
44
description: Monitoring for Deis Workflow.
55
maintainers:

grafana/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
[![Docker Repository on Quay](https://quay.io/repository/deisci/grafana/status "Docker Repository on Quay")](https://quay.io/repository/deisci/grafana)
33

44
## Description
5-
[Grafana](https://grafana.org/) is a graphing application built for time series data. It natively supports influxdb and provides great dashboarding support. This project is focused on provided a grafana installation that can be run within a kubernetes installation. The grafana application is agnostic to [Workflow](https://github.com/deisthree/workflow) and can be installed as a stand alone system with the monitoring suite.
5+
[Grafana](https://grafana.org/) is a graphing application built for time series data. It natively supports influxdb and provides great dashboarding support. This project is focused on provided a grafana installation that can be run within a kubernetes installation. The grafana application is agnostic to [Workflow](https://github.com/teamhephy/workflow) and can be installed as a stand alone system with the monitoring suite.
66

77
## Configuration
88
| ENV Var | Default Value | Description |

telegraf/README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
[![Docker Repository on Quay](https://quay.io/repository/deisci/telegraf/status "Docker Repository on Quay")](https://quay.io/repository/deisci/telegraf)
33

44
## Description
5-
Telegraf is a metrics collection daemon from InfluxData. It contains numerous input and output plugins that allows the user to customize what data they collect and where it is sent. This image is based on the official [deis base image](https://github.com/deisthree/docker-base).
5+
Telegraf is a metrics collection daemon from InfluxData. It contains numerous input and output plugins that allows the user to customize what data they collect and where it is sent. This image is based on the official [deis base image](https://github.com/teamhephy/docker-base).
66

77
## Configuration
88
Telegraf configuration is based largely on a toml file that is passed in when the binary starts. The issue with doing this in a containerized environment is how can you "dynamically" build this file based on values passed into the container at runtime. Therefore, this image relies on a project called [envtpl](https://github.com/arschles/envtpl) to produce the telegraf configuration file. It can take environment variables and through using go templates produce the necessary stanzas in the toml file to start telegraf. Currently, the go template only supports basic if checks and outputting values that have been set.

0 commit comments

Comments
 (0)