본문 바로가기

ansible3

kubespray 로 kubernetes 설치 (ubuntu) 0. 설치 환경 kubspray 서버 Ubuntu , CPU 2, Memory 2G Hostname : k8sbootstrap ip : 192.168.101.143 Control plane 1대 Ubuntu , CPU 2, Memory 2G Hostname : k8smaster ip : 192.168.101.144 Worker node 3대 Ubuntu cpu 2, memory 2G 1번 worker node Hostname : k8sslave1 Ip : 192.168.101.145 2번 worker node Hostname : k8sslave2 Ip : 192.168.101.146 3번 worker node Hostname : k8sslave3 Ip : 192.168.101.147 내가 설치할 사양은 .. 2023. 3. 31.
[ ANSIBLE] ansible 에서 windows 로 복사 및 실행 0. 사전 학습 내용 이미 https://shonm.tistory.com/635 내용이 설치 또는 학습 된 상태라는 전제 하에 아래 내용을 하셔야 합니다. 1. 작업할 내용 ansible host 의 /tmp/test2.bat 파일을 windows server 로 복사 windows server 에서 test2.bat 파일을 실행 2. test2.bat 내용 echo test2***** 3. 실행 할 playbook (win.copy.yml 파일로 생성함) - name: copy test hosts: win10 gather_facts: false tasks: - name: win copy win_copy: src: /tmp/test2.bat dest: C:\Temp\test2.bat - name: win.. 2020. 5. 17.
[ ANSIBLE ] ansible 에서 windows 원격 실행 우선 저의 테스트 환경을 먼저 알려 드리겠습니다. - centos 7 - windows10 (powershell 이 3버전 이상이여야 합니다.) yum 으로 ansible 설치부터 진행 하면서 설명 드리겠습니다. 1. Extra Packages for Enterprise Linux 설치 yum install -y epel-release 2. yum 을 통한 ansible 설치 yum install -y ansible 3. python 에서 winrm 을 실행 시킬 수 있도록 해줌 pip install "pywinrm>=0.3.0" winRM은 기본적으로 사용하는 포트는 5985,6번 입니다. (http 는 5985, https 는 5986) https 라니? 리눅스에선 openssl 을 미리 설치 해놔야.. 2020. 4. 26.