我是 m1 macbook 的新手,在运行 docker-compose 时遇到问题,如下所示:
version: "3.7"
services:
search:
platform: linux/x86_64
build:
context: .
dockerfile: Dockerfile.kubectl
Run Code Online (Sandbox Code Playgroud)
还有 Dockerfile:
FROM ubuntu:latest
RUN apt-get update && apt-get install -y apt-transport-https curl gnupg2 unzip
RUN curl -s https://packages.cloud.google.com/apt/doc/apt-key.gpg | apt-key add -
RUN echo "deb https://apt.kubernetes.io/ kubernetes-xenial main" | tee -a /etc/apt/sources.list.d/kubernetes.list
RUN apt-get update && apt-get install -y kubectl
RUN curl "https://awscli.amazonaws.com/awscli-exe-linux-x86_64.zip" -o "awscliv2.zip" && unzip awscliv2.zip && rm awscliv2.zip
RUN ./aws/install
Run Code Online (Sandbox Code Playgroud)
运行后我得到这样的错误:
2021-09-30T13:24:52.816038712Z /lib64/ld-linux-x86-64.so.2: No such file or directory
Run Code Online (Sandbox Code Playgroud)
解决这个问题的具体步骤是什么?我的 …
我在 AWS 上有一个 Kubernetes EKS 集群,我的目标是能够在我的 Spring Boot 应用程序中查看特定的配置映射。在我的本地环境中,一切正常,但是当我在 AWS 中使用此设置时,我进入禁止状态并且我的应用程序无法运行。我创建了一个服务帐户,但不明白如何创建可以分配所需 IAM 角色的 Terraform 脚本。任何帮助,将不胜感激。
amazon-web-services amazon-iam kubernetes terraform amazon-eks
您能否解释一下为什么可以使用oauth2-proxy作为 sidecar?例如,在一个架构中,k8s 中的每个 pod 都有这个 sidecar,它代理 Keycloack。
kubernetes ×2
amazon-eks ×1
amazon-iam ×1
apple-m1 ×1
docker ×1
keycloak ×1
oauth2-proxy ×1
sidecar ×1
terraform ×1