2023-12-30から1日間の記事一覧

{OCI ロード・バランサ} ロードバランサーでWebサーバーを負荷分散する

OCI

https://qiita.com/sugimount/items/6d060c03aa02837749c7https://docs.oracle.com/ja-jp/iaas/Content/Balance/Tasks/managingloadbalancer_topic-Creating_Load_Balancers.htm https://oracle-japan.github.io/ocitutorials/intermediates/using-load-bala…

OCI CLI(RDS)

OCI

https://docs.oracle.com/en-us/iaas/Content/Database/home.htm https://oracle-japan.github.io/ocitutorials/database/ https://www.oracle.com/jp/cloud/price-list/#pricing-oracle-databases (1) Autonomous Database [ADB]https://docs.oracle.com/en…

Kubernetes ReplicaSetマニフェスト

参考文献: Kubernetesマイクロサービス開発の実践 (早川博 著) kubectl explain replicasetkubectl api-resources cat <<-'EOF' > rs.yaml apiVersion: apps/v1kind: ReplicaSetmetadata: name: replicaset01 labels: app: hogespec: replicas: 3 selector: …

Kubernetes Podマニフェスト

参考文献: Kubernetesマイクロサービス開発の実践 (早川博 著) kubectl explain podkubectl api-resources cat <<-'EOF' > pod.yaml apiVersion: v1kind: Podmetadata: name: pod01spec: containers: - name: con01 image: nginx:1.23.4 ports: - containerP…

Kubernetesインストール(シングル) 2023年12月版

https://www.linuxtechi.com/install-kubernetes-on-ubuntu-22-04/ mmm161: Ubuntu22 Kubernetes master nodemmm162: Ubuntu22 Kubernetes worker node 前提:CPU数=2メモリ=8GDisk=50G hosts設定済み ※インストール後の作業はmaster nodeから一般ユーザでお…