Skip to content

Commit

Permalink
fix: correct nslookup behavior for Groot helm charts (#3974)
Browse files Browse the repository at this point in the history
  • Loading branch information
lidongze0629 authored Jun 27, 2024
1 parent 6d2b351 commit 33601cc
Show file tree
Hide file tree
Showing 5 changed files with 11 additions and 7 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/build-graphscope-wheels-macos.yml
Original file line number Diff line number Diff line change
Expand Up @@ -48,7 +48,7 @@ jobs:
# Not sure when the first installation would fail, saying that the lock of python3.10 is taken
# However the second trial would success.
python3 -m pip install click
python3 -m pip install click packaging
python3 gsctl.py install-deps dev || true
python3 gsctl.py install-deps dev
echo "export PATH=/usr/local/opt/coreutils/libexec/gnubin:\$PATH" >> ~/.graphscope_env
Expand Down Expand Up @@ -166,7 +166,7 @@ jobs:
sudo mkdir /opt/graphscope
sudo chown -R $(id -u):$(id -g) /opt/graphscope
python3 -m pip install click
python3 -m pip install click packaging
python3 gsctl.py install-deps dev || true
python3 gsctl.py install-deps dev
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ spec:
ports:
- name: port
port: 55555
targetPort: port
targetPort: inner-rpc
selector: {{- include "common.labels.matchLabels" . | nindent 4 }}
app.kubernetes.io/component: coordinator
{{- end -}}
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ spec:
ports:
- name: port
port: {{ .Values.frontend.service.port }}
targetPort: port
targetPort: inner-rpc
selector: {{- include "common.labels.matchLabels" . | nindent 4 }}
app.kubernetes.io/component: frontend
{{- end -}}
2 changes: 1 addition & 1 deletion charts/graphscope-store/templates/store/svc-headless.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ spec:
ports:
- name: port
port: 55555
targetPort: port
targetPort: inner-rpc
selector: {{- include "common.labels.matchLabels" . | nindent 4 }}
app.kubernetes.io/component: store
{{- end -}}
8 changes: 6 additions & 2 deletions flex/interactive/docker/interactive-runtime.Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -62,8 +62,12 @@ ARG ENABLE_COORDINATOR="false"
ENV DEBIAN_FRONTEND=noninteractive

# g++ + jre 500MB
RUN apt-get update && apt-get -y install sudo locales g++ cmake openjdk-11-jre-headless && \
locale-gen en_US.UTF-8 && apt-get clean -y && rm -rf /var/lib/apt/lists/*
RUN apt-get update && apt-get -y install sudo locales g++ cmake openjdk-11-jre-headless tzdata && \
locale-gen en_US.UTF-8 && apt-get clean -y && rm -rf /var/lib/apt/lists/*

# shanghai zoneinfo
ENV TZ=Asia/Shanghai
RUN ln -snf /usr/share/zoneinfo/$TZ /etc/localtime && echo $TZ > /etc/timezone

# python3
RUN if [ "${ENABLE_COORDINATOR}" = "true" ]; then \
Expand Down

0 comments on commit 33601cc

Please sign in to comment.