mirror of
https://github.com/RoboSats/robosats-deploy.git
synced 2025-08-10 03:50:10 +00:00
19 lines
329 B
YAML
19 lines
329 B
YAML
apiVersion: v1
|
|
kind: Service
|
|
metadata:
|
|
name: bitcoind
|
|
labels:
|
|
app: bitcoind
|
|
spec:
|
|
type: ClusterIP
|
|
ports:
|
|
- name: rpc
|
|
port: 18332 # mainnet 8332
|
|
- name: peers
|
|
port: 18333 # mainnet 8333
|
|
- name: block-events
|
|
port: 18501
|
|
- name: tx-events
|
|
port: 18502
|
|
selector:
|
|
app: bitcoind |