diff options
| -rw-r--r-- | kubernetes/chrome-service.yaml | 12 | ||||
| -rw-r--r-- | kubernetes/kustomization.yaml | 1 |
2 files changed, 13 insertions, 0 deletions
diff --git a/kubernetes/chrome-service.yaml b/kubernetes/chrome-service.yaml new file mode 100644 index 00000000..57df61af --- /dev/null +++ b/kubernetes/chrome-service.yaml @@ -0,0 +1,12 @@ +apiVersion: v1 +kind: Service +metadata: + name: chrome +spec: + selector: + app: chrome + ports: + - protocol: TCP + port: 9222 + targetPort: 9222 + type: ClusterIP
\ No newline at end of file diff --git a/kubernetes/kustomization.yaml b/kubernetes/kustomization.yaml index 4155f71f..44a51b5d 100644 --- a/kubernetes/kustomization.yaml +++ b/kubernetes/kustomization.yaml @@ -15,6 +15,7 @@ resources: - redis-deployment.yaml - redis-service.yaml - chrome-deployment.yaml +- chrome-service.yaml - meilisearch-deployment.yaml - meilisearch-service.yaml - workers-deployment.yaml |
