-
-
Save gowatana/de94a641f331499298ee7756fe603439 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| --- | |
| apiVersion: apps/v1 | |
| kind: Deployment | |
| metadata: | |
| name: mongo | |
| labels: | |
| app.kubernetes.io/name: mongo | |
| app.kubernetes.io/component: backend | |
| spec: | |
| selector: | |
| matchLabels: | |
| app.kubernetes.io/name: mongo | |
| app.kubernetes.io/component: backend | |
| replicas: 1 | |
| template: | |
| metadata: | |
| labels: | |
| app.kubernetes.io/name: mongo | |
| app.kubernetes.io/component: backend | |
| spec: | |
| containers: | |
| - name: mongo | |
| image: mongo:4.2 | |
| args: | |
| - --bind_ip | |
| - 0.0.0.0 | |
| resources: | |
| requests: | |
| cpu: 100m | |
| memory: 100Mi | |
| ports: | |
| - containerPort: 27017 |
Author
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
下記の投稿むけ。
VCF 5.2.1 で vSphere Supervisor を有効化してみる。Part-08:VKS クラスタへのアプリ展開(Guestbook)
https://vm.gowatana.jp/entry/2024/12/09/011843