그래들 + 코틀린 + 인텔리제이에서 빌드하면서 이런 오류가 나옴. org.gradle.api.artifacts.result.ComponentSelectionReason.getDescription()Ljava/lang/String 구글에 검색하면 여러가지 해결 방법들이 나온다. 1. reimport 2. .idea삭제후 재 빌드 3. 인텔리제이 재설치 나의 경우 인텔리제이 재설치로 해결
https://stackoverflow.com/questions/41325087/what-is-the-difference-between-a-pod-and-a-deployment What is the difference between a pod and a deployment? I have been creating pods with type:deployment but I see that some documentation uses type:pod, more specifically the documentation for multi-container pods: apiVersion: v1 kind: Pod metadata: n... stackoverflow.com
쿠버네티스를 처음 사용하면서 create와 apply 명령어의 차이가 뭔지 궁금해서 찾아보니 잘 정리된 글이 있어서 공부할 겸 작성 https://stackoverflow.com/questions/47369351/kubectl-apply-vs-kubectl-create kubectl apply vs kubectl create? What I understood by the documentation is that: kubectl create = Creates a new k8s resource in the cluster kubectl replace = Updates a resource in the live cluster kubectl apply = If I want to do ... stackoverflow...