View wordpress-istiogw-example.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
apiVersion: networking.istio.io/v1beta1 | |
kind: Gateway | |
metadata: | |
name: wordpressgateway | |
namespace: wordpress | |
spec: | |
selector: | |
istio: wordpressgateway | |
servers: | |
- hosts: |
View redis-service.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
apiVersion: v1 | |
kind: Service | |
metadata: | |
labels: | |
app: redis | |
version: "6.0" | |
name: redis | |
namespace: wordpress | |
spec: | |
ports: |
View redis-deployment.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
apiVersion: apps/v1 | |
kind: Deployment | |
metadata: | |
labels: | |
app: redis | |
version: "6.0" | |
name: redis | |
namespace: wordpress | |
spec: | |
replicas: 1 |
View envoy_dash.json
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
{ | |
"annotations": { | |
"list": [ | |
{ | |
"builtIn": 1, | |
"datasource": "-- Grafana --", | |
"enable": true, | |
"hide": true, | |
"iconColor": "rgba(0, 211, 255, 1)", | |
"name": "Annotations & Alerts", |
View envoyproductiontelegraf.conf
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
# Global tags can be specified here in key="value" format. | |
[global_tags] | |
# Configuration for telegraf agent | |
[agent] | |
interval = "5s" | |
round_interval = true | |
metric_batch_size = 1000 | |
metric_buffer_limit = 10000 | |
collection_jitter = "1s" |
View envoymoduletelegraf.conf
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
# Global tags can be specified here in key="value" format. | |
[global_tags] | |
# Configuration for telegraf agent | |
[agent] | |
interval = "60s" | |
round_interval = true | |
metric_batch_size = 1000 | |
metric_buffer_limit = 10000 | |
collection_jitter = "0s" |
View managed-asm.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
apiVersion: v1 | |
kind: Namespace | |
metadata: | |
labels: | |
kubernetes.io/metadata.name: istio-system | |
topology.istio.io/network: [Cluster VPC Network Name] | |
name: istio-system | |
--- | |
apiVersion: mesh.cloud.google.com/v1beta1 | |
kind: ControlPlaneRevision |
View gateway-namespace.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
apiVersion: v1 | |
kind: Namespace | |
metadata: | |
name: asm-gateway | |
annotations: | |
mesh.cloud.google.com/proxy: '{"managed":"true"}' | |
labels: | |
istio.io/rev: asm-managed-rapid |
View vsphere_ubuntu_terraform.tf
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
provider "vsphere" { | |
vsphere_server = var.vsphere_server | |
user = var.vsphere_user | |
password = var.vsphere_password | |
# If you have a self-signed cert | |
allow_unverified_ssl = true | |
} | |
data "vsphere_datacenter" "dc" { |
View vsphere_ubuntu.pkc.hcl
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
source “vsphere-iso” “this” { | |
vcenter_server = var.vsphere_server | |
username = var.vsphere_user | |
password = var.vsphere_password | |
datacenter = var.datacenter | |
cluster = var.cluster | |
insecure_connection = true | |
vm_name = “tf-ubuntu-server-20.04” | |
guest_os_type = “ubuntu64Guest” |
NewerOlder