From 3905af72272a569e1cc3bfb1763b6c347f6b8ae2 Mon Sep 17 00:00:00 2001 From: Phoeniix Zhao Date: Sat, 21 Oct 2023 10:46:43 +0800 Subject: [PATCH 1/2] chore: update container image in examples Signed-off-by: Phoeniix Zhao --- examples/affinity-example.yml | 2 +- examples/crd-deployment.yml | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/examples/affinity-example.yml b/examples/affinity-example.yml index 5d4def44..8cf6ca62 100644 --- a/examples/affinity-example.yml +++ b/examples/affinity-example.yml @@ -15,7 +15,7 @@ spec: - affinity-xline-cluster # This label is internally set and could be used to select pods. topologyKey: "kubernetes.io/hostname" container: - image: "datenlord/xline" + image: "xline-kv/xline" name: "my-xline" ports: - containerPort: 2379 diff --git a/examples/crd-deployment.yml b/examples/crd-deployment.yml index 9fb82461..e21ca064 100644 --- a/examples/crd-deployment.yml +++ b/examples/crd-deployment.yml @@ -16,5 +16,5 @@ spec: spec: containers: - name: xline-operator - image: datenlord/xline-operator:latest + image: ghcr.io/xline-kv/xline-operator:latest imagePullPolicy: Never # remove this line to get the latest xline-operator. From 06238027ee0d7d0bd1e2f00f35af89f867999869 Mon Sep 17 00:00:00 2001 From: Phoeniix Zhao Date: Mon, 23 Oct 2023 15:11:48 +0800 Subject: [PATCH 2/2] chore: add libssl dependency in x86 docker file Signed-off-by: Phoeniix Zhao --- .github/scripts/x86_64-unknown-linux-gnu.Dockerfile | 2 ++ 1 file changed, 2 insertions(+) diff --git a/.github/scripts/x86_64-unknown-linux-gnu.Dockerfile b/.github/scripts/x86_64-unknown-linux-gnu.Dockerfile index d04bfb83..293dd4e0 100644 --- a/.github/scripts/x86_64-unknown-linux-gnu.Dockerfile +++ b/.github/scripts/x86_64-unknown-linux-gnu.Dockerfile @@ -4,3 +4,5 @@ RUN set-eux; apt-get update && \ apt-get install --assume-yes clang libclang-dev unzip wget libssl-dev && \ wget https://github.com/protocolbuffers/protobuf/releases/download/v21.10/protoc-21.10-linux-x86_64.zip && \ unzip protoc-21.10-linux-x86_64.zip -d /usr/local \ + wget http://security.ubuntu.com/ubuntu/pool/main/o/openssl/libssl1.1_1.1.0g-2ubuntu4_amd64.deb && \ + dpkg -i libssl1.1_1.1.0g-2ubuntu4_amd64.deb