github.com/smartcontractkit/chainlink-testing-framework/libs@v0.0.0-20240227141906-ec710b4eb1a3/charts/geth-non-root/templates/geth-service.yml (about) 1 {{ if (hasKey .Values "geth") }} 2 apiVersion: v1 3 kind: Service 4 metadata: 5 name: geth 6 spec: 7 selector: 8 app: geth 9 release: {{ .Release.Name }} 10 ports: 11 - name: ws-rpc 12 port: {{ default "8546" $.Values.geth.wsrpc_port}} 13 targetPort: ws-rpc 14 - name: http-rpc 15 port: {{ default "8544" $.Values.geth.httprpc_port}} 16 targetPort: http-rpc 17 type: ClusterIP 18 {{ end }}