{"id":7173,"date":"2022-12-06T13:38:22","date_gmt":"2022-12-06T04:38:22","guid":{"rendered":"https:\/\/www.skyer9.pe.kr\/wordpress\/?p=7173"},"modified":"2022-12-07T14:30:12","modified_gmt":"2022-12-07T05:30:12","slug":"kubernetes-busybox-%ec%83%9d%ec%84%b1%ed%95%98%ea%b8%b0","status":"publish","type":"post","link":"https:\/\/www.skyer9.pe.kr\/wordpress\/?p=7173","title":{"rendered":"Kubernetes &#8211; busybox \uc0dd\uc131\ud558\uae30"},"content":{"rendered":"<h1>Kubernetes &#8211; busybox \uc0dd\uc131\ud558\uae30<\/h1>\n<p>. . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . .<\/p>\n<h2>\uc2ec\ud50c \ubc84\uc804<\/h2>\n<h3>busybox.yaml<\/h3>\n<pre><code class=\"language-bash\">vi busybox.yaml\n---------------------------\napiVersion: v1\nkind: Pod\nmetadata:\n  name: busybox\n  namespace: default\nspec:\n  containers:\n  - image: busybox\n    command:\n      - sleep\n      - &quot;3600&quot;\n    imagePullPolicy: IfNotPresent\n    name: busybox\n  restartPolicy: Always\n---------------------------<\/code><\/pre>\n<pre><code class=\"language-bash\">kubectl apply -f busybox.yaml<\/code><\/pre>\n<h3>\uc811\uc18d\ud558\uae30<\/h3>\n<pre><code class=\"language-bash\">kubectl get pod\nkubectl exec -it busybox -- \/bin\/sh<\/code><\/pre>\n<h2>\ubcfc\ub968 \ud3ec\ud568<\/h2>\n<pre><code class=\"language-bash\">vi busybox-with-volume.yaml\n---------------------------\napiVersion: apps\/v1\nkind: Deployment\nmetadata:\n  name: busybox-with-volume\nspec:\n  replicas: 1\n  selector:\n    matchLabels:\n      app: init-container-msg-app\n  template:\n    metadata:\n      labels:\n        app: init-container-msg-app\n    spec:\n      containers:\n      - command:\n          - sleep\n          - &quot;3600&quot;\n        image: busybox\n        name: init-container-msg-container-main\n        volumeMounts:\n        - name: default-pemstore\n          mountPath: \/etc\/ssl\/certs\/default.pem\n          subPath: rootCA.crt\n          readOnly: true\n      volumes:\n      - name: default-pemstore\n        configMap:\n          name: default-pemstore\n---------------------------<\/code><\/pre>\n<pre><code class=\"language-bash\">kubectl apply -f busybox-with-volume.yaml<\/code><\/pre>\n<h3>\uc811\uc18d\ud558\uae30<\/h3>\n<pre><code class=\"language-bash\">kubectl get pod\nkubectl exec -it busybox-with-volume-56fd4fd575-wgxgr -- \/bin\/sh<\/code><\/pre>\n","protected":false},"excerpt":{"rendered":"<p>Kubernetes &#8211; busybox \uc0dd\uc131\ud558\uae30 . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . .\u2026 <span class=\"read-more\"><a href=\"https:\/\/www.skyer9.pe.kr\/wordpress\/?p=7173\">Read More &raquo;<\/a><\/span><\/p>\n","protected":false},"author":1,"featured_media":0,"comment_status":"open","ping_status":"closed","sticky":false,"template":"","format":"standard","meta":{"footnotes":""},"categories":[12],"tags":[],"class_list":["post-7173","post","type-post","status-publish","format-standard","hentry","category-devops"],"_links":{"self":[{"href":"https:\/\/www.skyer9.pe.kr\/wordpress\/index.php?rest_route=\/wp\/v2\/posts\/7173","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/www.skyer9.pe.kr\/wordpress\/index.php?rest_route=\/wp\/v2\/posts"}],"about":[{"href":"https:\/\/www.skyer9.pe.kr\/wordpress\/index.php?rest_route=\/wp\/v2\/types\/post"}],"author":[{"embeddable":true,"href":"https:\/\/www.skyer9.pe.kr\/wordpress\/index.php?rest_route=\/wp\/v2\/users\/1"}],"replies":[{"embeddable":true,"href":"https:\/\/www.skyer9.pe.kr\/wordpress\/index.php?rest_route=%2Fwp%2Fv2%2Fcomments&post=7173"}],"version-history":[{"count":5,"href":"https:\/\/www.skyer9.pe.kr\/wordpress\/index.php?rest_route=\/wp\/v2\/posts\/7173\/revisions"}],"predecessor-version":[{"id":7186,"href":"https:\/\/www.skyer9.pe.kr\/wordpress\/index.php?rest_route=\/wp\/v2\/posts\/7173\/revisions\/7186"}],"wp:attachment":[{"href":"https:\/\/www.skyer9.pe.kr\/wordpress\/index.php?rest_route=%2Fwp%2Fv2%2Fmedia&parent=7173"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/www.skyer9.pe.kr\/wordpress\/index.php?rest_route=%2Fwp%2Fv2%2Fcategories&post=7173"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/www.skyer9.pe.kr\/wordpress\/index.php?rest_route=%2Fwp%2Fv2%2Ftags&post=7173"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}