본문 바로가기

전체 글46

[AZ-104] Azure 자격증 갱신(연장 그리고 또 연장) 시험 후기 AZ-104(Azure Administrator Associate) 자격증 갱신 시험재작년에 봤던 AZ-104 자격증의 유효기간이 곧 만료가 돼서 갱신 시험을 보라는 메일을 받았다. 이미 작년에 갱신 시험을 봤는데 또 갱신 시험을 볼 수 있나보다. 그러면 이렇게 갱신을 매년해주면 무료로 평생 자격증을 가지고 있을 수 있는 건가..? 보통 AWS, GCP 자격증 같은 경우에 자격 유효 기간이 끝나면 유료로 시험을 다시 응시해야 한다. (응시료 너무 비싸...ㅎㄷㄷ) Azure 시험은 유효기간이 1년이라 너무 짧다고 생각했는데 갱신 시험을 거저 주기 때문에 사실상 평생..?으로 보면 될 것 같다. 내년에도 또 재시험 무료로 주겠지..? 시험 특징총 26문제갱신 시험은 노가다를하면 합격할 수 있다. 다음과 같.. 2025. 2. 25.
Kubernetes 관리 툴 K9S 설치 방법 및 사용 방법 k9s란?Kubernetes 관리 툴kubectl get pod -n my-ns -o yaml, kubectl describe pod my-pod -n my-ns 등 명령어를 한땀한땀 작성하지 않아도esc, 화살표 키, 엔터키 등으로 간단하게 리소스 현황을 살펴볼 수 있다.설치 방법# Releases 페이지에서 최신 버전 확인version='v0.40.1'curl -LO https://github.com/derailed/k9s/releases/download/$version/k9s_linux_amd64.rpmdnf localinstall -y k9s_linux_amd64.rpmrm k9s_linux_amd64.rpm사용 방법k9s  명령어를 실행하면 화면이 바뀌는데 아래 표에 있는 명령어를 실행하여 리소.. 2025. 2. 17.
[k8s] NodeSelector, PodNodeSelector, NodeLabel 🔹 NodeLabelNode에 적용되는 Key-Value 쌍명령어# 모든 Node들의 라벨 조회kubectl get nodes --show-labels# 특정 Node의 라벨 조회kubectl get node --show-labels# 특정 라벨=값을 가진 Node 리스트 조회kubectl get node -l # 특정 라벨을 가진 Node 리스트 조회kubectl get node -l =# 특정 라벨 컬럼과 함께 모든 Node 리스트 출력kubectl get node -L # 특정 Node에 라벨 추가kubectl label nodes =# 특정 Node에 라벨 제거kubectl label nodes -# 특정 Node에 라벨 변경kubectl label nodes = --overwrite예시.. 2025. 2. 14.
nvidia3 Dynamic Resource Allocation (DRA) for GPUs in Kubernetes Kevin Klues kklues@nvidia.com>Last Updated: February 21st, 2023 IntroductionDynamic Resource Allocation (DRA) is an upcoming Kubernetes feature that puts resource scheduling in the hands of 3rd-party developers. From an end-user’s perspective, It moves away from the limited "countable" interface for requesting access to resources  (e.g. "n.. 2025. 2. 14.
nvidia2 Using a config file to configure the k8s-device-plugin and gpu-feature-discoveryKevin Klues kklues@nvidia.com>Last Updated:03-June-2022Table of ContentsOverview 2Design Details 2Deploying and Testing 4Deployment via helm 4Specifying Multiple Configuration Files 5Updating Per-Node Configuration With a Node Label 6Enabling gpu-feature-discovery 6OverviewAt present, the only way to configure the k8.. 2025. 2. 14.
반응형