2022-11-01から1ヶ月間の記事一覧

ローカル環境(kind)でingressを試す

はじめに kind (kubernetes in docker)でIngressを作成したい場合、ingress controllerを使う必要があります。 しかし、ドキュメント通りに実行してもM1 macなどのApple シリコンでは動きません。 理由は hashicorp/http-echo が arm64に対応していないから…

忙しい人向け: docker composeでnginxを立てる

ディレクトリ構造 $ tree . ├── README.md ├── conf.d │ └── default.conf └── docker-compose.yaml docker-compose.yaml version: '3.9' services: app: image: nginx:1.23-alpine ports: - "8080:80" volumes: - "./conf.d:/etc/nginx/conf.d" conf.d/defa…