- RESTful web service on top of Apache Lucene
- Has many clients that either uses
TrasportClientorHTTP ClientsTransportClientis scheduled to be removed on ElasticSearch 8.0
- Has two kind of query mechanisms
After this course I should be able to know how to:
- Deploy a single or a multiple container application to K8s
- Configure Service Discovery
- Expose applications to the public internet (well, if applicable)
- Deploy probes to monitor containers
- Bootstrap applications with init containers
- Manage Secrets
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 csv | |
| import datetime | |
| import os | |
| import time | |
| from github import Github | |
| def generate_report(): | |
| with open('report.csv', 'w', newline='') as csv_file: |
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
| from ast import parse | |
| import boto3 | |
| import argparse | |
| parser = argparse.ArgumentParser( | |
| usage="list_ecr_images.py --profile YOUR_PROFILE --region YOUR_REGION", | |
| description="Print all image details for reporting purpose" | |
| ) |
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
| # tfenv | |
| export PATH="$HOME/.tfenv/bin:$PATH" | |
| # PyEnv | |
| export PATH="$HOME/.pyenv/bin:$PATH" | |
| eval "$(pyenv init -)" | |
| # Sdkman | |
| source ~/.bash_profile; |
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 datetime | |
| import boto3 | |
| import botocore | |
| import argparse | |
| from distutils.util import strtobool | |
| from datetime import datetime, timedelta | |
| def define_parameters(): | |
| parser = argparse.ArgumentParser( |
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 time | |
| from typing import List, Tuple | |
| from boto3 import session | |
| from mypy_boto3_ssm import SSMClient | |
| _PROFILE = "YOUR_PROFILE" | |
| _REGION = "YOUR_AWS_REGION" | |
| _MAX_RESULT=50 |
OlderNewer