mirror of
https://github.com/deps-rs/deps.rs.git
synced 2024-11-22 18:36:30 +00:00
fc89990771
* Adds kubernetes manfiests, and deploy push * Add production overlay * Add a volume for crates.io-index
20 lines
386 B
YAML
20 lines
386 B
YAML
---
|
|
apiVersion: extensions/v1beta1
|
|
kind: Ingress
|
|
metadata:
|
|
name: deps-rs
|
|
annotations:
|
|
cert-manager.io/cluster-issuer: letsencrypt
|
|
spec:
|
|
rules:
|
|
- host: staging.deps.rs
|
|
http:
|
|
paths:
|
|
- backend:
|
|
serviceName: deps-rs
|
|
servicePort: http
|
|
path: /
|
|
tls:
|
|
- secretName: deps-rs-tls
|
|
hosts:
|
|
- $(DOMAIN)
|