Starting global readme
This commit is contained in:
parent
cf992f1d3b
commit
46770797f2
2 changed files with 49 additions and 0 deletions
17
README.md
Normal file
17
README.md
Normal file
|
@ -0,0 +1,17 @@
|
||||||
|
## IPv6 only kubernetes clusters
|
||||||
|
|
||||||
|
This project is testing, deploying and using IPv6 only k8s clusters.
|
||||||
|
|
||||||
|
## Working
|
||||||
|
|
||||||
|
* networking (calico)
|
||||||
|
* ceph with rook (cephfs, rbd)
|
||||||
|
|
||||||
|
## Not (yet) working or tested
|
||||||
|
|
||||||
|
* virtualisation (VMs, kubevirt)
|
||||||
|
* letsencrypt
|
||||||
|
* network policies
|
||||||
|
* prometheus in the cluster
|
||||||
|
* argocd (?) for CI and upgrades
|
||||||
|
* Maybe LoadBalancer support (our ClusterIP already does that though)
|
32
generic/etherpadlite.yaml
Normal file
32
generic/etherpadlite.yaml
Normal file
|
@ -0,0 +1,32 @@
|
||||||
|
apiVersion: apps/v1
|
||||||
|
kind: Deployment
|
||||||
|
metadata:
|
||||||
|
name: etherpadlite
|
||||||
|
spec:
|
||||||
|
selector:
|
||||||
|
matchLabels:
|
||||||
|
app: etherpadsooooolite
|
||||||
|
replicas: 1
|
||||||
|
template:
|
||||||
|
metadata:
|
||||||
|
labels:
|
||||||
|
app: etherpadsooooolite
|
||||||
|
spec:
|
||||||
|
containers:
|
||||||
|
- name: etherpad
|
||||||
|
image: etherpad/etherpad:1.8.13
|
||||||
|
ports:
|
||||||
|
- containerPort: 9001
|
||||||
|
---
|
||||||
|
apiVersion: v1
|
||||||
|
kind: Service
|
||||||
|
metadata:
|
||||||
|
name: etherpad
|
||||||
|
labels:
|
||||||
|
app: etherpadsooooolite
|
||||||
|
spec:
|
||||||
|
type: ClusterIP
|
||||||
|
ports:
|
||||||
|
- port: 9001
|
||||||
|
selector:
|
||||||
|
app: etherpadsooooolite
|
Loading…
Reference in a new issue