Skip to content

Commit 2536d76

Browse files
committed
goldilocks
1 parent 76b7a88 commit 2536d76

5 files changed

Lines changed: 74 additions & 0 deletions

File tree

infrastructure/controllers/argocd/apps/infrastructure-appset.yaml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -13,6 +13,7 @@ spec:
1313
directories:
1414
- path: infrastructure/controllers/cert-manager
1515
- path: infrastructure/controllers/external-dns
16+
- path: infrastructure/controllers/goldilocks
1617
- path: infrastructure/controllers/gpu-priority-classes
1718
- path: infrastructure/controllers/intel-device-plugins
1819
- path: infrastructure/controllers/node-feature-discovery
Lines changed: 26 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,26 @@
1+
---
2+
apiVersion: gateway.networking.k8s.io/v1
3+
kind: HTTPRoute
4+
metadata:
5+
name: goldilocks
6+
namespace: goldilocks
7+
spec:
8+
parentRefs:
9+
- group: gateway.networking.k8s.io
10+
kind: Gateway
11+
name: gateway-internal
12+
namespace: gateway
13+
sectionName: https
14+
hostnames:
15+
- "goldilocks.vanillax.me"
16+
rules:
17+
- matches:
18+
- path:
19+
type: PathPrefix
20+
value: /
21+
backendRefs:
22+
- group: ""
23+
kind: Service
24+
name: goldilocks-dashboard
25+
port: 80
26+
weight: 1
Lines changed: 16 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,16 @@
1+
apiVersion: kustomize.config.k8s.io/v1beta1
2+
kind: Kustomization
3+
namespace: goldilocks
4+
5+
resources:
6+
- namespace.yaml
7+
- httproute.yaml
8+
9+
helmCharts:
10+
- name: goldilocks
11+
repo: https://charts.fairwinds.com/stable
12+
version: 10.2.0
13+
releaseName: goldilocks
14+
namespace: goldilocks
15+
valuesFile: values.yaml
16+
includeCRDs: true
Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,4 @@
1+
apiVersion: v1
2+
kind: Namespace
3+
metadata:
4+
name: goldilocks
Lines changed: 27 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,27 @@
1+
controller:
2+
enabled: true
3+
flags:
4+
on-by-default: "true"
5+
resources:
6+
requests:
7+
cpu: 25m
8+
memory: 128Mi
9+
limits:
10+
cpu: 100m
11+
memory: 256Mi
12+
13+
dashboard:
14+
enabled: true
15+
replicaCount: 1
16+
flags:
17+
on-by-default: "true"
18+
resources:
19+
requests:
20+
cpu: 25m
21+
memory: 128Mi
22+
limits:
23+
cpu: 100m
24+
memory: 256Mi
25+
service:
26+
type: ClusterIP
27+
port: 80

0 commit comments

Comments
 (0)