π³
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| import json | |
| import os | |
| import time | |
| from typing import List | |
| from concurrent.futures import ProcessPoolExecutor | |
| import asyncio | |
| import boto3 | |
| from tqdm import tqdm | |
| AWS_ACCESS_KEY_ID = os.environ.get("AWS_ACCESS_KEY_ID") |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| import json | |
| import os | |
| import time | |
| from typing import List | |
| from concurrent.futures import ThreadPoolExecutor | |
| import asyncio | |
| import boto3 | |
| from tqdm import tqdm | |
| AWS_ACCESS_KEY_ID = os.environ.get("AWS_ACCESS_KEY_ID") |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| import asyncio | |
| import os | |
| import time | |
| from typing import List | |
| import json | |
| import aiobotocore | |
| import boto3 | |
| from aiobotocore.session import get_session | |
| from tqdm import tqdm |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| import json | |
| import os | |
| import time | |
| from typing import List | |
| import boto3 | |
| from tqdm import tqdm | |
| AWS_ACCESS_KEY_ID = os.environ.get("AWS_ACCESS_KEY_ID") | |
| AWS_SECRET_ACCESS_KEY = os.environ.get("AWS_SECRET_ACCESS_KEY") |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| global: | |
| image: | |
| # -- Overrides the Docker registry globally for all images, excluding enterprise. | |
| registry: docker.io | |
| # -- Optional list of imagePullSecrets for all images, excluding enterprise. | |
| # Names of existing secrets with private container registry credentials. | |
| # Ref: https://kubernetes.io/docs/concepts/containers/images/#specifying-imagepullsecrets-on-a-pod | |
| # Example: | |
| # pullSecrets: [ my-dockerconfigjson-secret ] | |
| pullSecrets: [] |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| certSANs: | |
| - kubernetes | |
| - kubernetes.default | |
| - kubernetes.default.svc | |
| - kubernetes.default.svc.cluster.local | |
| - 10.233.0.1 # <- k8s service μ€λΈμ νΈ CIDR λμμ IPλ‘. μ΄κ²μ kube-apiserver μ service object Cluster IP μ£Όμμ΄λ€. | |
| - localhost | |
| - 127.0.0.1 | |
| - node1 | |
| - node2 |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| #!/usr/bin/env bash | |
| export AWS_REGION=ap-northeast-2 | |
| export AWS_PROFILE_NAME=YOUR_PROFILE_NAME | |
| NAMES=$( | |
| aws secretsmanager list-secrets \ | |
| --query 'SecretList[?Name!=`null`].Name' \ | |
| --output text | |
| ) |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| π Morning 45 commits βββββββββββββββββββββ 5.5% | |
| π Daytime 276 commits βββββββββββββββββββββ 33.5% | |
| π Evening 314 commits βββββββββββββββββββββ 38.2% | |
| π Night 188 commits βββββββββββββββββββββ 22.8% |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| #!/bin/bash | |
| #νμ΄μ¬ 3.7.2 λ²μ μ μλμΌλ‘ μ€μΉνλ μ μ€ν¬λ¦½νΈμ λλ€. | |
| #λ°λΉμ κ³μ΄ 리λ μ€ λ°°ν¬νμμ μ¬μ© κ°λ₯ν©λλ€ | |
| echo "installing python3.7 start" | |
| #set -e | |
| apt-get update -y | |
| if [ $? -ne 0 ]; then | |
| echo "check your network" | |
| else |