Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

chore: update container image in examples #36

Closed
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 2 additions & 0 deletions .github/scripts/x86_64-unknown-linux-gnu.Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -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 && \
Copy link
Collaborator

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

FROM ghcr.io/cross-rs/x86_64-unknown-linux-gnu:main@sha256:bf0cd3027befe882feb5a2b4040dc6dbdcb799b25c5338342a03163cea43da1b -> FROM ghcr.io/cross-rs/x86_64-unknown-linux-gnu:main above.
we might not to install openssl manually.

dpkg -i libssl1.1_1.1.0g-2ubuntu4_amd64.deb
2 changes: 1 addition & 1 deletion examples/affinity-example.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
2 changes: 1 addition & 1 deletion examples/crd-deployment.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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.
Loading