mirror of
https://gitlab.com/pulsechaincom/prysm-pulse.git
synced 2025-01-08 10:41:19 +00:00
75 lines
1.5 KiB
YAML
75 lines
1.5 KiB
YAML
|
kind: Deployment
|
||
|
apiVersion: apps/v1
|
||
|
metadata:
|
||
|
name: contract-address-http
|
||
|
namespace: beacon-chain
|
||
|
labels:
|
||
|
app: beacon-chain
|
||
|
component: contract-address-http
|
||
|
version: v1
|
||
|
spec:
|
||
|
replicas: 2
|
||
|
selector:
|
||
|
matchLabels:
|
||
|
app: beacon-chain
|
||
|
component: contract-address-http
|
||
|
version: v1
|
||
|
template:
|
||
|
metadata:
|
||
|
labels:
|
||
|
app: beacon-chain
|
||
|
component: contract-address-http
|
||
|
version: v1
|
||
|
spec:
|
||
|
priorityClassName: production-priority
|
||
|
containers:
|
||
|
- name: site
|
||
|
image: gcr.io/prysmaticlabs/prysm/contract-addr:latest
|
||
|
args:
|
||
|
- --address-path=/etc/address/DEPOSIT_CONTRACT_ADDRESS
|
||
|
ports:
|
||
|
- containerPort: 8080
|
||
|
name: http
|
||
|
volumeMounts:
|
||
|
- name: config-volume
|
||
|
mountPath: /etc/address
|
||
|
volumes:
|
||
|
- name: config-volume
|
||
|
configMap:
|
||
|
name: beacon-config
|
||
|
---
|
||
|
kind: Service
|
||
|
apiVersion: v1
|
||
|
metadata:
|
||
|
name: contract-address-http
|
||
|
namespace: beacon-chain
|
||
|
spec:
|
||
|
selector:
|
||
|
app: beacon-chain
|
||
|
component: contract-address-http
|
||
|
ports:
|
||
|
- port: 8080
|
||
|
targetPort: 8080
|
||
|
name: http
|
||
|
type: ClusterIP
|
||
|
---
|
||
|
apiVersion: networking.istio.io/v1alpha3
|
||
|
kind: VirtualService
|
||
|
metadata:
|
||
|
name: contract-address-http
|
||
|
namespace: istio-system
|
||
|
spec:
|
||
|
hosts:
|
||
|
- beta.prylabs.net
|
||
|
gateways:
|
||
|
- prylabs-wildcard-gateway
|
||
|
http:
|
||
|
- match:
|
||
|
- uri:
|
||
|
prefix: /contract
|
||
|
route:
|
||
|
- destination:
|
||
|
port:
|
||
|
number: 8080
|
||
|
host: contract-address-http.beacon-chain.svc.cluster.local
|