-
Notifications
You must be signed in to change notification settings - Fork 6
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 #24 from zifter/feature/use-unit-tests
Use unittest plugin
- Loading branch information
Showing
74 changed files
with
1,096 additions
and
489 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
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,8 @@ | ||
suite: test dashboards | ||
templates: | ||
- dashboards.yaml | ||
tests: | ||
- it: render by default | ||
asserts: | ||
- hasDocuments: | ||
count: 1 |
This file was deleted.
Oops, something went wrong.
2 changes: 0 additions & 2 deletions
2
charts/agones-dashboards/tests/template-all/values-default.yaml
This file was deleted.
Oops, something went wrong.
103 changes: 9 additions & 94 deletions
103
charts/agones-dashboards/tests/template-all/values-full.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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,99 +1,14 @@ | ||
replicaCount: 1 | ||
|
||
image: | ||
repository: zifter/zookeeper_exporter | ||
pullPolicy: IfNotPresent | ||
tag: "latest" | ||
|
||
imagePullSecrets: [] | ||
nameOverride: "" | ||
fullnameOverride: "" | ||
|
||
serviceAccount: | ||
create: true | ||
annotations: {} | ||
name: "" | ||
|
||
podAnnotations: {} | ||
|
||
podSecurityContext: | ||
fsGroup: 2000 | ||
|
||
securityContext: | ||
capabilities: | ||
drop: | ||
- ALL | ||
readOnlyRootFilesystem: true | ||
runAsNonRoot: true | ||
runAsUser: 1000 | ||
|
||
service: | ||
type: ClusterIP | ||
port: 80 | ||
|
||
ingress: | ||
enabled: false | ||
className: "" | ||
annotations: | ||
kubernetes.io/ingress.class: nginx | ||
kubernetes.io/tls-acme: "true" | ||
hosts: | ||
- host: chart-example.local | ||
paths: | ||
- path: / | ||
pathType: ImplementationSpecific | ||
tls: | ||
- secretName: chart-example-tls | ||
hosts: | ||
- chart-example.local | ||
|
||
resources: | ||
limits: | ||
cpu: 100m | ||
memory: 128Mi | ||
requests: | ||
cpu: 100m | ||
memory: 128Mi | ||
|
||
nodeSelector: {} | ||
|
||
tolerations: [] | ||
|
||
affinity: {} | ||
|
||
# Prometheus rules | ||
rules: | ||
enabled: true | ||
|
||
# Grafana dashboards | ||
dashboards: | ||
enabled: true | ||
# Labels to add dashboard | ||
labels: | ||
# default grafana dashboard discovery label with stub value | ||
# Override this value if you use custom grafana label | ||
# https://github.com/grafana/helm-charts/blob/grafana-6.16.3/charts/grafana/values.yaml#L629 | ||
grafana_dashboard: '1' | ||
# Folder to put dashboard in grafana | ||
# Will be used default if it's empty | ||
targetFolder: "" | ||
|
||
# Prometheus service monitor | ||
metrics: | ||
enabled: true | ||
# Interval between metrics scraping | ||
interval: 1m | ||
|
||
# Kafka clusters to export metrics | ||
zookeeper: | ||
- name: cluster1 | ||
# list of hosts of cluster to monitor | ||
hosts: | ||
- host1:2181 | ||
- host2:2181 | ||
- name: cluster2 | ||
# list of hosts of cluster to monitor | ||
hosts: | ||
- host1:2181 | ||
- host2:2181 | ||
- host2:2181 | ||
# Labels to add dashboard | ||
labels: | ||
# default grafana dashboard discovery label with stub value | ||
# Override this value if you use custom grafana label | ||
# https://github.com/grafana/helm-charts/blob/grafana-6.16.3/charts/grafana/values.yaml#L629 | ||
grafana_dashboard: '1' | ||
# Folder to put dashboard in grafana | ||
# Will be used default if it's empty | ||
targetFolder: "" |
Oops, something went wrong.