Skip to content

Commit

Permalink
Update to MicroK8s 1.23
Browse files Browse the repository at this point in the history
- Update SEI values.yaml files to use new K8s v1 Ingress
- Incorporate values.yaml changes in latest Bitnami PostgreSQL chart
- Reenable IPv6 so that `microk8s inspect` will run properly
- Disable MicroK8s host-access addon and implement the same using
  netplan
- Bind dnsmasq to host-access loopback address (10.0.1.1)
  • Loading branch information
sei-mkaar committed Feb 7, 2022
1 parent 24819ac commit 45479b7
Show file tree
Hide file tree
Showing 9 changed files with 1,236 additions and 612 deletions.
1 change: 1 addition & 0 deletions foundry/dnsmasq.conf
Original file line number Diff line number Diff line change
@@ -1,2 +1,3 @@
bind-dynamic
listen-address=10.0.1.1
interface-name=foundry.local,eth0
20 changes: 14 additions & 6 deletions foundry/gameboard.values.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -43,14 +43,20 @@ gameboard-api:

ingress:
enabled: true
annotations: {}
annotations:
nginx.ingress.kubernetes.io/proxy-body-size: 10m

hosts:
- host: foundry.local
paths:
- /gameboard/api
- /gameboard/hub
- /gameboard/img
- /gameboard/doc
- path: /gameboard/api
pathType: ImplementationSpecific
- path: /gameboard/hub
pathType: ImplementationSpecific
- path: /gameboard/img
pathType: ImplementationSpecific
- path: /gameboard/doc
pathType: ImplementationSpecific
tls:
- secretName: appliance-cert
hosts:
Expand Down Expand Up @@ -172,7 +178,9 @@ gameboard-ui:
annotations: {}
hosts:
- host: foundry.local
paths: ["/gameboard"]
paths:
- path: /gameboard
pathType: ImplementationSpecific
tls:
- secretName: appliance-cert
hosts:
Expand Down
8 changes: 6 additions & 2 deletions foundry/identity.values.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,9 @@ identity-api:
annotations: {}
hosts:
- host: foundry.local
paths: [ "/identity" ]
paths:
- path: /identity
pathType: ImplementationSpecific
tls:
- secretName: appliance-cert
hosts:
Expand Down Expand Up @@ -139,7 +141,9 @@ identity-ui:
annotations: {}
hosts:
- host: foundry.local
paths: [ "/identity/ui" ]
paths:
- path: /identity/ui
pathType: ImplementationSpecific
tls:
- secretName: appliance-cert
hosts:
Expand Down
Loading

0 comments on commit 45479b7

Please sign in to comment.