Linux

· Linux/K8s
1. Argo CD 설치# 1.1 Argo CD를 위한 Namespace 생성kubectl create namespace argocd# 1.2 Argo CD 설치 (Stable 버전)kubectl apply -n argocd -f https://raw.githubusercontent.com/argoproj/argo-cd/stable/manifests/install.yaml2. Argo CD CLI 설치# 2.1 최신 버전 정보 가져오기VERSION=$(curl -L -s https://raw.githubusercontent.com/argoproj/argo-cd/stable/VERSION)# 2.2 CLI 다운로드 및 설치curl -sSL -o argocd-linux-amd64 https://github...
· Linux/K8s
host-mount-pod.yaml 작성 apiVersion: v1 kind: Pod metadata: name: host-mount-pod spec: containers: - name: host-mount-container image: busybox # BusyBox는 간단한 Linux 배포판으로, 기본적인 명령어를 포함합니다. command: ["sleep", "3600"] # 파드가 종료되지 않고 계속 실행되도록 설정 volumeMounts: - name: root-volume mountPath: /host readOnly: true # 읽기 전용으로 마운트 volumes: - name: root-volume hostPath: path: / # 호스트 머신의 루트 디렉토리를 마운트합니다. type:..
· Linux
OS : CentOS7.9 1. OpenLDAP 설치 # yum install openldap-servers openldap openldap-clients openldap-devel nss_ldap compat-openldap # vi /etc/sysconfig/slapd # OpenLDAP server configuration # see 'man slapd' for additional information # Where the server will run (-h option) # - ldapi:/// is required for on-the-fly configuration using client tools # (use SASL with EXTERNAL mechanism for authentication..
· Linux
Cloudera에서는 클러스터 성능을 위해 swap을 최소로 사용하도록 설정할 것을 권고한다. https://docs.cloudera.com/cdp-private-cloud-base/7.1.7/managing-clusters/topics/cm-setting-vmswappiness-linux-kernel-parameter.html Redhat7에서는 sysctl.conf에 vm.swappiness 설정을 추가하는 것으로 문제가 없지만 Redhat8 일부 버전에서 sysctl.conf의 vm.swappiness설정이 전체 프로세스로 적용이 안되는 현상. 관련 링크(https://access.redhat.com/solutions/6785021) 확인 방법 예시 1. 현재 os 설정값 1 확인 $ sysctl ..
hundredragon
'Linux' 카테고리의 글 목록 (2 Page)