This file contains hidden or 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
[program:scollector] | |
command=/bin/bash -c "/scollector/scollector -h 0.0.0.0:5252" | |
priority=100 | |
stdout_logfile=/var/log/scollector.out.log | |
stderr_logfile=/var/log/scollector.err.log | |
autostart=true | |
autorestart=true |
This file contains hidden or 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
global | |
log /dev/log local0 | |
log /dev/log local1 notice | |
chroot /var/lib/haproxy | |
stats socket /run/haproxy/admin.sock mode 660 level admin expose-fd listeners | |
stats timeout 30s | |
user haproxy | |
group haproxy | |
daemon |
This file contains hidden or 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
apiVersion: apps/v1beta1 | |
kind: Deployment | |
metadata: | |
name: {{ template "api.fullname" . }} | |
labels: | |
app: {{ template "api.name" . }} | |
chart: {{ template "api.chart" . }} | |
release: {{ .Release.Name }} | |
heritage: {{ .Release.Service }} | |
spec: |
This file contains hidden or 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
kind: Namespace | |
apiVersion: v1 | |
metadata: | |
name: $(namespace) | |
spec: {} | |
status: {} | |
--- | |
kind: ServiceAccount |
This file contains hidden or 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
{{- if .Values.ingress.enabled -}} | |
{{- $fullName := include "kuberwebsite.fullname" . -}} | |
{{- $servicePort := .Values.service.port -}} | |
{{- $ingressPath := .Values.ingress.path -}} | |
apiVersion: extensions/v1beta1 | |
kind: Ingress | |
metadata: | |
name: {{ $fullName }} | |
labels: | |
app: {{ template "kuberwebsite.name" . }} |
This file contains hidden or 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
apiVersion: apps/v1beta2 | |
kind: Deployment | |
metadata: | |
name: {{ template "kuberwebsite.fullname" . }} | |
labels: | |
app: {{ template "kuberwebsite.name" . }} | |
chart: {{ template "kuberwebsite.chart" . }} | |
draft: {{ default "draft-app" .Values.draft }} | |
release: {{ .Release.Name }} | |
heritage: {{ .Release.Service }} |
This file contains hidden or 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
# Default values for sampleapp. | |
# This is a YAML-formatted file. | |
# Declare variables to be passed into your templates. | |
fullnameOverride: website | |
replicaCount: 2 | |
image: | |
repository: VALUE_TO_BE_OVERRIDDEN | |
tag: latest | |
imagePullSecrets: [] |
This file contains hidden or 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
kubectl create clusterrolebinding kubernetes-dashboard --clusterrole=cluster-admin --serviceaccount=kube-system:kubernetes-dashboard |
This file contains hidden or 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
{ | |
"$schema": "https://schema.management.azure.com/schemas/2015-01-01/deploymentTemplate.json#", | |
"contentVersion": "1.0.0.0", | |
"parameters": { | |
"virtualMachines_DC_name": { | |
"defaultValue": "DC", | |
"type": "String" | |
}, | |
"virtualMachines_ADS_name": { | |
"defaultValue": "ADS", |
This file contains hidden or 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
[program:tsdbrelay] | |
command=/bin/bash -c "/tsdbrelay/tsdbrelay -l 0.0.0.0:5252 -b bosunip:8070 -t opentsdbip:4242 -redis redisip:6379" | |
priority=100 | |
stdout_logfile=/var/log/tsdbrelay.out.log | |
stderr_logfile=/var/log/tsdbrelay.err.log | |
autostart=true | |
autorestart=true | |