Configuring Static IP on Ubuntu 22.04.5

In Ubuntu 22.04.5, additional configuration steps are required when setting a static IP using Netplan. Cloud-Init Cloud-Init is a tool designed for automating initialization tasks when an instance boots in a cloud environment. The directory /etc/cloud/cloud.cfg.d/ contains configuration files related to Cloud-Init. Role of Cloud-Init Folders and Files The default Cloud-Init configuration is defined in … Read more

unity | webGL Game on Kubernetes

유니티 챌린지로 데모 게임(김치런)을 만들고 webGL Build 후 unity에 업로드 및 unity에서 제공하는 링크로 데모게임 까지 테스트 완료하였습니다. 하지만 개인 테스트 K8S에 업로드 하고 싶어서 이것저것 테스트 해보고 업로드 하게 되었습니다. 완성된 데모게임 https://play.unity.com/en/games/40499aa7-3656-45cf-ab52-60a0e0c10a82/demo2sdjo Unity 설정 변경 에디터 종속을 제외하기위한 설정으로 압축방식을 바꿀겁니다. https://docs.unity.cn/kr/2023.2/Manual/webgl-deploying.html https://stackoverflow.com/questions/72453065/unable-to-parse-build-build-framework-js-br Build 압축방식 변경 Edit > Project Settings > Player > … Read more

unity | pivot 설정을 했으나 Anchor위치가 안바뀔때

유투버 노마드코더님의 영상을 보고 게임만들기를 따라 하는 중 Anchor위치가 안바뀌는 문제가 발생했다. 김장게임 강의 영상(유튜버 : 노마드코더) 설정 과정 Inspector 설정값 Sprite Mode를 Single로 설정, Pivot을 Bottom으로 설정하였다.그러나 반영이 되지 않았다. Sene설정 영상과 내 에디터 화면을 비교하다보니 문제가 무엇인지 발견하였다.Sene에서 설정을 Center > Pivot으로 변경하면 해결되는 간단한 이슈였다.

Hierachy와 객체, 개체란?

Hierachy? 유니티를 이용한 간단한 게임 개발 프로젝트를 따라하려고 하다보니 Hierachy가 보여서 좀 더 찾아보기로 하였음. 대락적으로 계층 구조 같은 느낌으로 알고는 있는데 이번기회에 좀더 알아보기로함. linux에서 directory에 속한 폴더 및 파일 구조를 볼때도 tree 커멘드를 이용해서 보면 트리형태로 나오는데 이것도 계층구조다. 찾아봐도 특별히 중요한 내용이 보이는 것은 아니고 하위 객체가 상위 객체에 포함된다정도로 이해하면 될 … Read more

openstack | kolla-ansible 테스트

이전에 테스트해보고 정리했던 자료인데…빠진 내용이 있을 수 있음.베어메탈이나 가상머신에서 Kolla Ansible을 이용하여 테스트삼아 오픈스택을 배포하는 내용. 사전 준비 https://docs.openstack.org/project-deploy-guide/kolla-ansible/wallaby/quickstart.html 운영체제 Ubuntu 20.04 LTS 사용 사전 필요 지식 AnsibleDocker※ 컨테이너 이미지 : Host OS와 맞추어 주는 것이 좋음. 시스템 최소 요구 사양 2개의 네트워크 인터페이스8GB 메모리40GB 디스크 공간 배포과정 Kolla-ansible 배포 환경 구성 Update the Package … Read more

MinIO | VM에 구성해보기

https://min.io/docs/minio/linux/index.html MinIO Object Storage for Linux https://blog.min.io/continuing-the-journey-our-new-mascot-and-wordmark QuickStart: MinIO for Linux MinIO 개체 스토리지 및 S3 호환 API 계층의 초기 개발 및 평가를 위해 VM 1대에 MinIO 서버를 구축한다. Install 패키지를 다운 받는다. 설치 minio-user 계정생성 systemd 실행 파일을 보면 minio-user로 실행하도록 되어있다./usr/lib/systemd/system/minio.service default 설정파일생성 https://min.io/docs/minio/linux/operations/install-deploy-manage/deploy-minio-single-node-single-drive.html#deploy-single-node-single-drive-minio MinIO 서버 실행 웹콘솔 예시 TLS/SSL 설정하기 참고자료인증서는 Let’s … Read more

Prometheus NodeExporter, k8s integration

You need a Kubernetes cluster with Prometheus server installed and running. What is Prometheus NodeExporter Prometheus Node Exporter is an open-source tool designed to expose system-level metrics for servers, making them available to Prometheus for monitoring. It provides detailed insights into the hardware and operating system, including metrics like CPU usage, memory usage, disk I/O, … Read more