---
apiVersion: v1
kind: Namespace
metadata:
labels:
kubernetes.io/metadata.name: debug
name: debug
# httpbin.yaml
#apiVersion: networking.istio.io/v1alpha3
#kind: VirtualService
#metadata:
# name: httpbin
# namespace: debug
#spec:
# hosts:
# - "httpbin.badhouseplants.net"
# gateways:
# - istio-system/badhouseplants-net
# http:
# - route:
# - destination:
# port:
# number: 8000
# host: httpbin
apiVersion: networking.k8s.io/v1
kind: Ingress
name: httpbin
namespace: debug
spec:
rules:
- host: "httpbin.badhouseplants.net"
http:
paths:
- path: /
pathType: Prefix
backend:
service:
port:
number: 8000
kind: Service
app: httpbin
ports:
- name: http
port: 8000
selector:
apiVersion: apps/v1
kind: Deployment
replicas: 1
matchLabels:
version: v1
template:
containers:
- image: docker.io/citizenstig/httpbin
imagePullPolicy: IfNotPresent
- containerPort: 8000
apiVersion: argoproj.io/v1alpha1
kind: Application
name: ubuntu
namespace: argo-system
project: default
source:
repoURL: git@git.badhouseplants.net:badhouseplants/k8s-cluster-config.git
targetRevision: try-argo-and-flux
path: manifests/debug/ubuntu
destination:
server: https://kubernetes.default.svc
namespace: default