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: logging.banzaicloud.io/v1beta1 | |
| kind: Flow | |
| metadata: | |
| name: renovo-logging-telemetry-postgres-rbatch | |
| spec: | |
| filters: | |
| - grep: | |
| regexp: | |
| - key: "$.kubernetes.container_name" | |
| pattern: /telemetry-postgres/ |
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: helm.fluxcd.io/v1 | |
| kind: HelmRelease | |
| metadata: | |
| name: blo | |
| namespace: renovo-logging | |
| annotations: | |
| fluxcd.io/automated: "false" | |
| fluxcd.io/locked: "true" | |
| fluxcd.io/tag.chart-image: semver:~3.7 |
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: logging.banzaicloud.io/v1beta1 | |
| kind: Output | |
| metadata: | |
| name: logging-out | |
| namespace: app-demo-7 | |
| spec: | |
| elasticsearch: | |
| host: FQDN | |
| index_name: CLUSTER_NAME-app-demo-7 | |
| port: 443 |
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
| --- | |
| dashboards: | |
| - name: R Dev | |
| index_name: c-t-dev-1 | |
| - name: P Demo | |
| index_name: c-t-demo-7 | |
| - name: P Prod | |
| index_name: c-t-prod-1 | |
| - name: P Stage | |
| index_name: c-t-stage-0 |
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
| Address: 1812 VERDUGO HILLS HOSPITAL, GLENDALE, CA | |
| [{'address_components': [{'long_name': '1812', | |
| 'short_name': '1812', | |
| 'types': ['street_number']}, | |
| {'long_name': 'Verdugo Boulevard', | |
| 'short_name': 'Verdugo Blvd', | |
| 'types': ['route']}, | |
| {'long_name': 'San Rafael Hills', | |
| 'short_name': 'San Rafael Hills', | |
| 'types': ['neighborhood', 'political']}, |
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
| #!/usr/bin/env python3.8 | |
| import re | |
| import csv | |
| import mpu | |
| import json | |
| import time | |
| import pprint | |
| import googlemaps | |
| from datetime import datetime |
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
| firewall: | |
| conntrack: | |
| default_timeout: 10m | |
| max_connections: 100000 | |
| tcp_timeout: 12m | |
| udp_timeout: 3m | |
| inbound: | |
| - host: any | |
| port: any | |
| proto: any |
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: Service | |
| apiVersion: v1 | |
| metadata: | |
| name: www-trp-gfe-local-bkroger | |
| spec: | |
| ports: | |
| - port: 8080 | |
| name: http | |
| protocol: TCP |
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
| { | |
| "keys": [ | |
| { | |
| "name": "blah", | |
| "value": "1234" | |
| }, | |
| { | |
| "name": "yada", | |
| "value": "5678" | |
| } |
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: batch/v1beta1 | |
| kind: CronJob | |
| metadata: | |
| name: influxdb-backup | |
| spec: | |
| concurrencyPolicy: Allow | |
| failedJobsHistoryLimit: 10 | |
| jobTemplate: | |
| spec: | |
| template: |