Skip to content

Commit

Permalink
fix workstation build
Browse files Browse the repository at this point in the history
  • Loading branch information
BeryJu committed Apr 15, 2024
1 parent 2dec30f commit 07fa37a
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
4 changes: 2 additions & 2 deletions actions/sentry-cleanup.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -14,8 +14,8 @@
- name: Vacuum nodestore_node (first pass)
community.docker.docker_container_exec:
container: sentry-self-hosted-postgres-1
command: psql -U sentry -c "vacuum public.nodestore_node;"
command: psql -U postgres -c "vacuum public.nodestore_node;"
- name: Vacuum nodestore_node (second pass)
community.docker.docker_container_exec:
container: sentry-self-hosted-postgres-1
command: psql -U sentry -c "vacuum full public.nodestore_node;"
command: psql -U postgres -c "vacuum full public.nodestore_node;"
4 changes: 2 additions & 2 deletions images/workstation/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -64,8 +64,8 @@ RUN curl -L https://github.com/BeryJu/korb/releases/latest/download/korb_linux_a
COPY --from=docker.io/minio/mc:RELEASE.2023-10-04T06-52-56Z /bin/mc /usr/bin/mc

# kubectl
RUN curl -s https://packages.cloud.google.com/apt/doc/apt-key.gpg | apt-key add - && \
echo "deb https://apt.kubernetes.io/ kubernetes-xenial main" > /etc/apt/sources.list.d/kubernetes.list && \
RUN curl -fsSL https://pkgs.k8s.io/core:/stable:/v1.29/deb/Release.key | gpg --dearmor -o /etc/apt/keyrings/kubernetes-apt-keyring.gpg && \
echo 'deb [signed-by=/etc/apt/keyrings/kubernetes-apt-keyring.gpg] https://pkgs.k8s.io/core:/stable:/v1.29/deb/ /' | tee /etc/apt/sources.list.d/kubernetes.list && \
apt-get update && \
apt-get install --no-install-recommends -y kubectl

Expand Down

0 comments on commit 07fa37a

Please sign in to comment.