├── .github ├── CODEOWNERS ├── PULL_REQUEST_TEMPLATE.md └── workflows │ └── inactive_issues.yaml ├── .gitignore ├── .gitmodules ├── .gitpod.yml ├── CODE_OF_CONDUCT.md ├── CONTRIBUTING.md ├── LICENSE ├── README.md ├── amplify.yml ├── amplify.yml.readme ├── archetypes └── default.md ├── buildspec.yml.disabled ├── codebuild-deploy.sh ├── config.toml ├── content ├── 010_introduction │ ├── _index.md │ ├── architecture │ │ ├── _index.md │ │ ├── architecture_control.md │ │ ├── architecture_control_and_data_overview.md │ │ ├── architecture_worker.md │ │ └── cluster_setup_options.md │ ├── basics │ │ ├── _index.md │ │ ├── concepts_nodes.md │ │ ├── concepts_objects.md │ │ ├── concepts_objects_details_1.md │ │ ├── concepts_objects_details_2.md │ │ └── what_is_k8s.md │ └── eks │ │ ├── _index.md │ │ ├── eks_control_plane.md │ │ ├── eks_customers.md │ │ ├── eks_high_architecture.md │ │ ├── eks_high_level.md │ │ └── stay_tuned.md ├── 020_prerequisites │ ├── _index.md │ ├── ap-southeast-1.md │ ├── aws_event │ │ ├── _index.md │ │ └── portal.md │ ├── awscli.md │ ├── clone.md │ ├── ec2instance.md │ ├── eu-west-1.md │ ├── gitclone.md │ ├── iamrole.md │ ├── k8stools.md │ ├── kmskey.md │ ├── self_paced │ │ ├── _index.md │ │ ├── account.md │ │ ├── ap-southeast-1.md │ │ ├── eu-west-1.md │ │ ├── us-east-2.md │ │ └── us-west-2.md │ ├── us-east-2.md │ ├── us-west-2.md │ ├── workspace.md │ └── workspaceiam.md ├── 030_eksctl │ ├── _index.md │ ├── console.md │ ├── launcheks.files │ │ ├── eksworkshop-kubeflow.yml.template │ │ └── eksworkshop.yml.template │ ├── launcheks.md │ ├── prerequisites.md │ └── test.md ├── 910_conclusion │ ├── _index.md │ ├── conclusion.md │ └── survey.md ├── 920_cleanup │ ├── _index.md │ ├── cloudformation.md │ ├── eksctl.md │ ├── others.md │ ├── undeploy.md │ └── workspace.md ├── _index.md ├── advanced │ ├── 310_servicemesh_with_istio │ │ ├── _index.md │ │ ├── cleanup.md │ │ ├── deploy.md │ │ ├── download.md │ │ ├── install.md │ │ ├── introduction.md │ │ ├── routing.md │ │ └── visualize.md │ ├── 330_servicemesh_using_appmesh │ │ ├── _index.md │ │ ├── add_nodegroup_fargate │ │ │ ├── _index.md │ │ │ ├── cloudwatch_setup.md │ │ │ └── create_fargate.md │ │ ├── appmesh_installation │ │ │ ├── _index.md │ │ │ └── install_appmesh.md │ │ ├── canary_deployment │ │ │ ├── _index.md │ │ │ ├── deploy_canary.md │ │ │ └── testing_v2.md │ │ ├── cleanup │ │ │ └── _index.md │ │ ├── deploy_applications │ │ │ ├── _index.md │ │ │ ├── about_the_k8s_app.md │ │ │ ├── create_the_app.md │ │ │ └── test_the_app.md │ │ ├── integrate_observability │ │ │ ├── _index.md │ │ │ ├── cloudwatch_logs.md │ │ │ ├── container_insights.md │ │ │ ├── prometheus_metrics.md │ │ │ └── xray_trace.md │ │ ├── port_to_app_mesh │ │ │ ├── _index.md │ │ │ ├── create_meshed_app.md │ │ │ ├── mesh_resources_overview.md │ │ │ ├── testing_v1.md │ │ │ └── trigger_sidecar_injection.md │ │ └── virtual_gateway_setup │ │ │ ├── _index.md │ │ │ ├── add_virtual_gateway.md │ │ │ └── testing_virtualgateway.md │ ├── 340_appmesh_flagger │ │ ├── _index.md │ │ ├── canary_analysis.md │ │ ├── canary_deploy.md │ │ ├── cleanup.md │ │ ├── conclusion.md │ │ ├── flagger_setup.md │ │ ├── fronend_vg_setup.md │ │ ├── install_appmesh.md │ │ └── testing.md │ ├── 410_batch │ │ ├── _index.md │ │ ├── artifact.md │ │ ├── cleanup.md │ │ ├── dashboard.md │ │ ├── deploy.md │ │ ├── install.md │ │ ├── introduction.md │ │ ├── jobs.md │ │ ├── workflow-advanced.md │ │ └── workflow-simple.md │ ├── 420_kubeflow │ │ ├── _index.md │ │ ├── cleanup.md │ │ ├── dashboard.md │ │ ├── distributed.md │ │ ├── fairing.md │ │ ├── inference.md │ │ ├── install.md │ │ ├── jupyter.md │ │ ├── kubeflow.files │ │ │ ├── Dockerfile.txt │ │ │ ├── inference_client.py │ │ │ ├── mnist-inference.yaml │ │ │ ├── mnist-tensorflow-docker.py │ │ │ ├── mnist-tensorflow-jupyter.py │ │ │ ├── mnist-tensorflow.yaml │ │ │ └── mnist-training.yaml │ │ ├── pipelines.md │ │ └── training.md │ ├── 430_emr_on_eks │ │ ├── _index.md │ │ ├── autoscaling.md │ │ ├── cleanup.md │ │ ├── eks_emr_using_node_selectors.md │ │ ├── fargate_1.md │ │ ├── fargate_2.md │ │ ├── monitoring_and_logging_0.md │ │ ├── monitoring_and_logging_1.md │ │ ├── monitoring_and_logging_2.md │ │ ├── monitoring_and_logging_3.md │ │ ├── prereqs.md │ │ ├── sample_workload.md │ │ ├── spot_instances_1.md │ │ └── spot_instances_2.md │ └── _index.md ├── authors.md ├── beginner │ ├── 040_dashboard │ │ ├── _index.md │ │ ├── cleanup.md │ │ ├── connect.md │ │ └── dashboard.md │ ├── 050_deploy │ │ ├── _index.md │ │ ├── applications.md │ │ ├── cleanup.md │ │ ├── deploycrystal.md │ │ ├── deployfrontend.md │ │ ├── deploynodejs.md │ │ ├── scalebackend.md │ │ ├── scalefrontend.md │ │ ├── servicerole.md │ │ ├── servicetype.md │ │ └── viewservices.md │ ├── 060_helm │ │ ├── _index.md │ │ ├── helm_intro │ │ │ ├── _index.md │ │ │ └── install.md │ │ ├── helm_micro │ │ │ ├── _index.md │ │ │ ├── cleanup.md │ │ │ ├── create_chart.md │ │ │ ├── customize.md │ │ │ ├── deploy.md │ │ │ ├── rolling_back.md │ │ │ └── service.md │ │ └── helm_nginx │ │ │ ├── _index.md │ │ │ ├── addbitnamirepo.md │ │ │ ├── cleaningup.md │ │ │ ├── installnginx.md │ │ │ ├── searchchart.md │ │ │ └── updatecharts.md │ ├── 070_healthchecks │ │ ├── _index.md │ │ ├── cleanup.md │ │ ├── liveness.files │ │ │ └── liveness-app.yaml │ │ ├── livenessprobe.md │ │ ├── readiness.files │ │ │ └── readiness-deployment.yaml │ │ └── readinessprobe.md │ ├── 080_scaling │ │ ├── _index.md │ │ ├── cleanup.md │ │ ├── deploy_ca.files │ │ │ ├── cluster-autoscaler-autodiscover.yaml │ │ │ └── cluster_autoscaler.yml │ │ ├── deploy_ca.md │ │ ├── deploy_hpa.md │ │ ├── install_kube_ops_view.md │ │ ├── test_ca.md │ │ └── test_hpa.md │ ├── 085_scaling_karpenter │ │ ├── _index.md │ │ ├── automatic_node_provisioning.md │ │ ├── cleanup_karpenter.md │ │ ├── install_karpenter.md │ │ ├── set_up_the_provisioner.md │ │ └── setup_the_environment.md │ ├── 090_rbac │ │ ├── _index.md │ │ ├── cleanup.md │ │ ├── create_iam_user.md │ │ ├── create_role_and_binding.md │ │ ├── install_test_pods.md │ │ ├── intro.md │ │ ├── map_iam_user_to_k8s_user.md │ │ ├── test_rbac_user_without_roles.md │ │ └── verify_user_role_binding.md │ ├── 091_iam-groups │ │ ├── _index.md │ │ ├── cleanup.md │ │ ├── configure-aws-auth.md │ │ ├── create-iam-groups.md │ │ ├── create-iam-roles.md │ │ ├── create-k8s-rbac.md │ │ ├── create_iam_users.md │ │ ├── intro.md │ │ └── test-cluster-access.md │ ├── 110_irsa │ │ ├── _index.md │ │ ├── cleanup.md │ │ ├── deploy.md │ │ ├── iam-role-for-sa-1.md │ │ ├── iam-role-for-sa-2.md │ │ ├── oidc-provider.md │ │ └── preparation.md │ ├── 115_sg-per-pod │ │ ├── 09_prerequisite.md │ │ ├── 10_secgroup.md │ │ ├── 20_rds.md │ │ ├── 30_cni_config.md │ │ ├── 40_sg_policy.md │ │ ├── 50_deploy.md │ │ ├── 90_cleanup.md │ │ ├── _index.md │ │ └── deployments.files │ │ │ ├── green-pod.yaml │ │ │ └── red-pod.yaml │ ├── 120_network-policies │ │ ├── _index.md │ │ ├── calico-enterprise │ │ │ ├── _index.md │ │ │ ├── lab-1.md │ │ │ ├── lab-2.md │ │ │ ├── lab-3.md │ │ │ └── register.md │ │ └── calico │ │ │ ├── _index.md │ │ │ ├── install_calico.md │ │ │ └── stars_policy_demo │ │ │ ├── _index.md │ │ │ ├── apply_network_policies.files │ │ │ ├── allow-ui-client.yaml │ │ │ ├── allow-ui.yaml │ │ │ └── default-deny.yaml │ │ │ ├── apply_network_policies.md │ │ │ ├── cleanup.md │ │ │ ├── create_resources.files │ │ │ ├── backend.yaml │ │ │ ├── client.yaml │ │ │ ├── frontend.yaml │ │ │ ├── management-ui.yaml │ │ │ └── namespace.yaml │ │ │ ├── create_resources.md │ │ │ ├── default_policy.md │ │ │ ├── directional_traffic.files │ │ │ ├── backend-policy.yaml │ │ │ └── frontend-policy.yaml │ │ │ └── directional_traffic.md │ ├── 130_exposing-service │ │ ├── _index.md │ │ ├── accessing.md │ │ ├── cleaning.md │ │ ├── connecting.md │ │ ├── exposing.md │ │ ├── ingress.md │ │ └── ingress_controller_alb.md │ ├── 140_assigning_pods │ │ ├── _index.md │ │ ├── affinity.md │ │ ├── affinity_usecases.md │ │ ├── cleaning.md │ │ └── node_selector.md │ ├── 150_spotnodegroups │ │ ├── _index.md │ │ ├── cleanup.md │ │ ├── deployapp.files │ │ │ ├── ecsdemo-crystal-deployment.yml │ │ │ ├── ecsdemo-frontend-deployment.yml │ │ │ └── ecsdemo-nodejs-deployment.yml │ │ ├── deployapp.md │ │ ├── spotlifecycle.md │ │ └── spotnodegroups.md │ ├── 160_advanced-networking │ │ ├── _index.md │ │ └── secondary_cidr │ │ │ ├── _index.md │ │ │ ├── cleanup.md │ │ │ ├── configure-cni.md │ │ │ ├── eniconfig_crd.md │ │ │ ├── prerequisites.md │ │ │ └── test_networking.md │ ├── 170_statefulset │ │ ├── _index.md │ │ ├── cleanup.md │ │ ├── configmap.md │ │ ├── ebs_csi_driver.md │ │ ├── services.md │ │ ├── statefulset.files │ │ │ └── mysql-statefulset.yaml │ │ ├── statefulset.md │ │ ├── storageclass.md │ │ ├── testfailure.md │ │ ├── testmysql.md │ │ └── testscaling.md │ ├── 180_fargate │ │ ├── _index.md │ │ ├── cleaning.md │ │ ├── creating-profile.md │ │ ├── deploying-fargate.md │ │ ├── ingress.md │ │ ├── ingress_controller_alb.md │ │ ├── prerequisites-for-alb.md │ │ └── prerequisites.md │ ├── 185_bottlerocket │ │ ├── _index.md │ │ ├── cleaning.md │ │ ├── deployapp.md │ │ ├── launchbottlerocket.md │ │ └── prerequisites.md │ ├── 190_efs │ │ ├── _index.md │ │ ├── cleaning.md │ │ ├── deploying-services.md │ │ ├── efs-csi-driver.md │ │ ├── efs.files │ │ │ ├── efs-provisioner-deployment.yaml │ │ │ ├── efs-pvc.yaml │ │ │ ├── efs-reader.yaml │ │ │ └── efs-writer.yaml │ │ └── launching-efs.md │ ├── 190_fsx_lustre │ │ ├── _index.md │ │ ├── cleaning.md │ │ ├── deploying-services.md │ │ └── launching-fsx.md │ ├── 190_ocean │ │ ├── _index.md │ │ ├── cleanup.md │ │ ├── cluster_roll.md │ │ ├── deploying_apps.md │ │ ├── headroom.md │ │ ├── launch_ocean.md │ │ ├── logs.md │ │ ├── register.md │ │ ├── rightsizing.md │ │ └── showback.md │ ├── 191_secrets │ │ ├── _index.md │ │ ├── cleanup.md │ │ ├── consume-a-secret.md │ │ ├── create-a-secret.md │ │ └── kms-custom-keystore.md │ ├── 194_secrets_manager │ │ ├── _index.md │ │ ├── cleanup.md │ │ ├── configure-csi-driver.md │ │ ├── deploy-workload-secret.md │ │ ├── prepare-secret.md │ │ └── sync_native_secrets_env.md │ ├── 200_secrets │ │ ├── _index.md │ │ ├── cleaning.md │ │ ├── deploying-secrets-variables.md │ │ ├── deploying-secrets-volumes.md │ │ ├── installing-sealed-secrets.md │ │ ├── managing-sealing-key.md │ │ ├── sealed-secrets.md │ │ ├── sealing-secrets.md │ │ └── secrets.files │ │ │ ├── controller.yaml │ │ │ ├── kustomization.yaml │ │ │ ├── pod-variable.yaml │ │ │ └── pod-volume.yaml │ ├── 300_windows │ │ ├── _index.md │ │ ├── calico_windows │ │ │ ├── _index.md │ │ │ ├── install_calico.md │ │ │ ├── install_calico_node.md │ │ │ └── test_network_policy.md │ │ ├── cleanup.md │ │ ├── considerations.md │ │ ├── sample_app_deploy.md │ │ └── windows_nodes.md │ └── _index.md ├── intermediate │ ├── 200_migrate_to_eks │ │ ├── _index.md │ │ ├── cleanup.md │ │ ├── configure-eks-cluster.md │ │ ├── create-kind-cluster.md │ │ ├── deploy-counter-app-eks.md │ │ ├── deploy-counter-app-kind.md │ │ ├── deploy-counter-db-in-eks.md │ │ ├── expose-counter-app-kind.md │ │ └── resize-ebs.sh │ ├── 201_resource_management │ │ ├── _index.md │ │ ├── advanced-pod-limits.md │ │ ├── basic-pod-limits.md │ │ ├── cleanup.md │ │ ├── deploy-metrics-server.md │ │ ├── pod-priority.md │ │ └── resource-quota.md │ ├── 220_codepipeline │ │ ├── _index.md │ │ ├── change.md │ │ ├── cleanup.md │ │ ├── codepipeline.md │ │ ├── configmap.md │ │ ├── forksample.md │ │ ├── githubcredentials.md │ │ └── role.md │ ├── 230_logging │ │ ├── _index.md │ │ ├── cleanup.md │ │ ├── config_es.md │ │ ├── deploy.files │ │ │ ├── es_domain.json │ │ │ └── fluentbit.yaml │ │ ├── deploy.md │ │ ├── kibana.md │ │ ├── prereqs.md │ │ └── setup_es.md │ ├── 240_monitoring │ │ ├── _index.md │ │ ├── cleanup.md │ │ ├── dashboards.md │ │ ├── deploy-grafana.md │ │ ├── deploy-prometheus.md │ │ └── prereqs.md │ ├── 241_pixie │ │ ├── _index.md │ │ ├── cleanup.md │ │ ├── deploy_pixie.md │ │ ├── prereqs.md │ │ └── using_pixie │ │ │ ├── _index.md │ │ │ ├── http_data.md │ │ │ ├── mysql_data.md │ │ │ ├── run_script.md │ │ │ └── service_errors.md │ ├── 245_x-ray │ │ ├── _index.md │ │ ├── cleanup.md │ │ ├── daemonset.files │ │ │ ├── Dockerfile │ │ │ ├── README.md │ │ │ ├── build.sh │ │ │ └── xray-k8s-daemonset.yaml │ │ ├── microservices.md │ │ ├── role.md │ │ ├── sample-back.files │ │ │ ├── .dockerignore │ │ │ ├── Dockerfile │ │ │ ├── README.md │ │ │ ├── build.sh │ │ │ ├── go.mod │ │ │ ├── go.sum │ │ │ ├── main.go │ │ │ └── x-ray-sample-back-k8s.yml │ │ ├── sample-front.files │ │ │ ├── .dockerignore │ │ │ ├── Dockerfile │ │ │ ├── README.md │ │ │ ├── build.sh │ │ │ ├── go.mod │ │ │ ├── go.sum │ │ │ ├── main.go │ │ │ └── x-ray-sample-front-k8s.yml │ │ ├── x-ray-daemon.md │ │ └── x-ray.md │ ├── 246_monitoring_amp_amg │ │ ├── _index.md │ │ ├── amg_login.md │ │ ├── cleanup.md │ │ ├── create_amg_workspace.md │ │ ├── create_amp_workspace.md │ │ ├── ingest_metrics.md │ │ ├── query_metrics.md │ │ └── setup_iam.md │ ├── 250_cloudwatch_container_insights │ │ ├── _index.md │ │ ├── accesswp.md │ │ ├── cwalarms.md │ │ ├── cwcinstall.md │ │ ├── cwcinstallprep.md │ │ ├── gettingstarted.md │ │ ├── img │ │ │ ├── alarmconfig.png │ │ │ ├── alertdescription.png │ │ │ ├── attachperm.png │ │ │ ├── attachpolicy.png │ │ │ ├── configactions.png │ │ │ ├── createalarm.png │ │ │ ├── cwdaemon.png │ │ │ ├── ec2info.png │ │ │ ├── helminstalloutput.png │ │ │ ├── insights.png │ │ │ ├── lboutput.png │ │ │ ├── metriceksservice.png │ │ │ ├── metricsoptions.png │ │ │ ├── metricsview.png │ │ │ ├── metrictime.png │ │ │ ├── sampleemail.png │ │ │ ├── siegeextract.png │ │ │ ├── siegerun.png │ │ │ ├── siegeversion.png │ │ │ ├── ssnemail.png │ │ │ ├── switches.gif │ │ │ ├── viewinmetrics.png │ │ │ ├── wordpresslogo.png │ │ │ ├── wpdashboard.png │ │ │ ├── wplogin.png │ │ │ └── wploginpage.png │ │ ├── installwordpress.md │ │ ├── prepareloadtest.md │ │ ├── runloadtest.md │ │ ├── verifycwci.md │ │ ├── viewlogs.md │ │ ├── viewvetrics.md │ │ └── wraup.md │ ├── 260_weave_flux │ │ ├── _index.md │ │ ├── app.files │ │ │ ├── Dockerfile │ │ │ ├── hello.conf │ │ │ └── index.html │ │ ├── cleanup.md │ │ ├── codepipeline.md │ │ ├── deploymenthelm.md │ │ ├── deploymentmanifests.md │ │ ├── githubsetup.md │ │ ├── iam.files │ │ │ ├── cbAssumeRolePolicyDocument.json │ │ │ ├── cbPolicyDocument.json │ │ │ ├── cpAssumeRolePolicyDocument.json │ │ │ └── cpPolicyDocument.json │ │ ├── installweaveflux.md │ │ └── prereqs.md │ ├── 270_custom_resource_definition │ │ ├── _index.md │ │ ├── cleaning.md │ │ ├── creating_co.md │ │ └── creating_crd.md │ ├── 280_backup-and-restore │ │ ├── _index.md │ │ ├── backup-restore.md │ │ ├── backupandrestore.files │ │ │ ├── mysql-deployment.yaml │ │ │ ├── storage-class.yaml │ │ │ └── wordpress-deployment.yaml │ │ ├── cleanup.md │ │ ├── deploy-app.md │ │ ├── install_velero.md │ │ └── prerequisites.md │ ├── 290_argocd │ │ ├── _index.md │ │ ├── cleanup.md │ │ ├── configure.md │ │ ├── deploy_application.md │ │ ├── install.md │ │ └── update_application.md │ ├── 300_cis_eks_benchmark │ │ ├── _index.md │ │ ├── conclusion.md │ │ ├── debug-mode.md │ │ ├── intro.md │ │ ├── run-as-job.md │ │ └── ssh-into-node.md │ ├── 310_opa_gatekeeper │ │ ├── _index.md │ │ ├── cleanup.md │ │ ├── intro.md │ │ ├── policy-example-1.md │ │ └── setup.md │ ├── 320_eks_upgrades │ │ ├── _index.md │ │ ├── theprocess.md │ │ ├── upgradeaddons.md │ │ ├── upgradeeks.md │ │ └── upgrademng.md │ ├── 330_app_mesh │ │ ├── _index.md │ │ ├── cleanup │ │ │ └── _index.md │ │ ├── deploy_dj_app │ │ │ ├── _index.md │ │ │ ├── about_the_k8s_app.md │ │ │ ├── clone_repo.md │ │ │ ├── conclusion.md │ │ │ ├── create_the_app.md │ │ │ ├── test_the_app.md │ │ │ └── test_worker_perms.md │ │ ├── install_app_mesh_controller │ │ │ ├── _index.md │ │ │ ├── about_sidecar.md │ │ │ ├── conclusion.md │ │ │ └── install_controller.md │ │ └── port_to_app_mesh │ │ │ ├── _index.md │ │ │ ├── canary_testing.md │ │ │ ├── create_meshed_app.md │ │ │ ├── mesh_resources_overview.md │ │ │ ├── testing_v1.md │ │ │ ├── testing_v2.md │ │ │ └── trigger_sidecar_injection.md │ └── _index.md ├── keybase.txt ├── more_resources.md └── tabs-example │ ├── _index.md │ └── tabs │ ├── _index.md │ ├── eks.md │ ├── eksctl.md │ └── launcheks.md ├── layouts ├── 404.html ├── partials │ ├── custom-footer.html │ ├── custom-header.html │ ├── favicon.html │ ├── header.html │ ├── logo.html │ ├── menu-footer.html │ └── speakerdeck.html └── shortcodes │ ├── cf-download.html │ ├── cf-launch.html │ ├── ghcontributors.html │ ├── github.html │ ├── mermaid.html │ ├── output.html │ ├── surveymonkey.html │ ├── tab.html │ ├── tabs.html │ └── year.html ├── package-lock.json ├── package.json ├── static ├── 640px-Amazon_Web_Services_Logo.svg.png ├── AWS-Logo.svg ├── Amazon_Web_Services_Logo.svg ├── css │ ├── all.css │ ├── jquery-ui.min.css │ └── theme-mine.css ├── icons │ ├── apple-touch-icon-114x114.png │ ├── apple-touch-icon-120x120.png │ ├── apple-touch-icon-144x144.png │ ├── apple-touch-icon-152x152.png │ ├── apple-touch-icon-57x57.png │ ├── apple-touch-icon-60x60.png │ ├── apple-touch-icon-72x72.png │ ├── apple-touch-icon-76x76.png │ ├── code.txt │ ├── favicon-128.png │ ├── favicon-16x16.png │ ├── favicon-196x196.png │ ├── favicon-32x32.png │ ├── favicon-96x96.png │ ├── favicon.ico │ ├── mstile-144x144.png │ ├── mstile-150x150.png │ ├── mstile-310x150.png │ ├── mstile-310x310.png │ └── mstile-70x70.png ├── images │ ├── 3-service-animated.gif │ ├── Calico-enterprise-logo-1000px.png │ ├── ContainerInsights1.png │ ├── ContainerInsights10.png │ ├── ContainerInsights11.png │ ├── ContainerInsights12.png │ ├── ContainerInsights13.png │ ├── ContainerInsights14.png │ ├── ContainerInsights15.png │ ├── ContainerInsights16.png │ ├── ContainerInsights17.png │ ├── ContainerInsights18.png │ ├── ContainerInsights2.png │ ├── ContainerInsights3.png │ ├── ContainerInsights5.png │ ├── ContainerInsights6.png │ ├── ContainerInsights7.png │ ├── ContainerInsights8.png │ ├── ContainerInsights9.png │ ├── Project-Calico-logo-1000px.png │ ├── allow-egress-twilio.png │ ├── amg │ │ ├── amg1.png │ │ ├── amg10.png │ │ ├── amg11.png │ │ ├── amg12.png │ │ ├── amg2.png │ │ ├── amg3.png │ │ ├── amg4.png │ │ ├── amg5.png │ │ ├── amg6.png │ │ ├── amg7.png │ │ ├── amg8.PNG │ │ ├── amg8.png │ │ ├── amg9.png │ │ └── amp13.png │ ├── amp │ │ ├── amp1.png │ │ ├── amp3.png │ │ └── amp4.png │ ├── app_mesh_fargate │ │ ├── appmeshconfig.png │ │ ├── appmeshpolicy.png │ │ ├── appmeshv1-1.png │ │ ├── architecture-1.png │ │ ├── canary-1.png │ │ ├── canary1.png │ │ ├── canary2.png │ │ ├── canary50-1.png │ │ ├── catalog.png │ │ ├── catalogmap.png │ │ ├── catalogtrace.png │ │ ├── cloudwatchd.png │ │ ├── cloudwatchpolicy.png │ │ ├── cluster_insight1.png │ │ ├── consolecontrol.png │ │ ├── controlplanelog.png │ │ ├── ecr.png │ │ ├── eks-nodegroup1.png │ │ ├── eks-worker.png │ │ ├── fargate.png │ │ ├── fargate_log.png │ │ ├── fargatepodrole.png │ │ ├── fargaterole.png │ │ ├── fluentbit.png │ │ ├── instancerole.png │ │ ├── lbfrontend-2.png │ │ ├── log1.png │ │ ├── map.png │ │ ├── mesh-1.png │ │ ├── mesh-2.png │ │ ├── mesh-3.png │ │ ├── mesh_console.png │ │ ├── meshify-vg.png │ │ ├── meshify.png │ │ ├── meshify0.png │ │ ├── meshify1.png │ │ ├── meshify3.png │ │ ├── microservices.png │ │ ├── no-appmesh-arch.png │ │ ├── node_insight1.png │ │ ├── pcapp.png │ │ ├── policies.png │ │ ├── product-v1-1.png │ │ ├── product-v2.png │ │ ├── prometheus-logs.png │ │ ├── prometheus-metrics.png │ │ ├── prometheus-reports.png │ │ ├── prometheus-reports2.png │ │ ├── proxy.png │ │ ├── sa-role.png │ │ ├── search1.png │ │ ├── tracef-1.png │ │ ├── tracef-2.png │ │ ├── tracef-3.png │ │ ├── tracef.png │ │ ├── tracep-1.png │ │ ├── tracep-2.png │ │ ├── tracep-3.png │ │ ├── tracep-4.png │ │ ├── ui1.png │ │ ├── ui2.png │ │ ├── ui3.png │ │ ├── v1map.png │ │ ├── v1trace.png │ │ ├── v2map.png │ │ ├── v2trace.png │ │ ├── vg.png │ │ ├── virtualgateway.png │ │ └── xraypolicy1.png │ ├── app_mesh_flagger │ │ ├── flagger.png │ │ ├── lb.png │ │ ├── mapview.png │ │ ├── traceview.png │ │ ├── version1.png │ │ ├── version2.png │ │ └── version3.png │ ├── app_mesh_ga │ │ ├── 101-side-car-proxy.png │ │ ├── 115-common-need.png │ │ ├── 125-v1-no-mesh.png │ │ ├── 135-v1-mesh.png │ │ ├── 140-v2-mesh.png │ │ ├── 150-observable-and-shapable.png │ │ ├── 155-v2-with-mesh-and-cp.png │ │ ├── djapp-1.png │ │ └── djapp-2.png │ ├── app_mesh_old │ │ ├── appmesh_overview.png │ │ └── routers_and_routes.png │ ├── argo-workflow │ │ ├── argo-dashboard.png │ │ ├── argo-hotel-job.png │ │ ├── argo-logo.png │ │ ├── argo-logs.png │ │ └── argo-workflow.png │ ├── argocd │ │ ├── app_outofsync.png │ │ ├── app_sync.png │ │ ├── app_synced.png │ │ ├── argocd_architecture.png │ │ ├── argocd_ui.jpg │ │ ├── edit_deployment.png │ │ ├── fork_app_repo.jpg │ │ └── fork_url.jpg │ ├── aws-operator-demo.png │ ├── backupandrestore │ │ ├── blogpost.jpg │ │ ├── velero-bucket.jpg │ │ ├── velero.png │ │ ├── wordpress-admin.jpg │ │ └── wordpress.jpg │ ├── c9attachrole.png │ ├── c9disableiam.png │ ├── c9instancerole.png │ ├── calico-chapter-image.png │ ├── calico-client-f-b-access.png │ ├── calico-full-access.png │ ├── calico-mgmtui-access.png │ ├── cleanup.svg │ ├── cloud9-editor.png │ ├── cloudtrail-2022UI-proof-1024.png │ ├── codepipeline │ │ ├── cloudformation_delete.png │ │ ├── cloudformation_stack.png │ │ ├── cloudformation_stack_creating.png │ │ ├── codepipeline_building.png │ │ ├── codepipeline_details.png │ │ ├── codepipeline_landing.png │ │ ├── ecr_delete.png │ │ ├── github_commit.png │ │ ├── github_copy_access.png │ │ ├── github_edit.png │ │ ├── github_fork.png │ │ ├── github_fork_example.png │ │ ├── github_modify.png │ │ ├── github_token_name.png │ │ └── s3_delete.png │ ├── crystal.svg │ ├── dashboard-connect.png │ ├── dashboard.png │ ├── denied-traffic.png │ ├── deny-public-ips.png │ ├── efs-provisioner │ │ ├── configmap.png │ │ ├── deployment.png │ │ ├── efs-dashboard.png │ │ ├── provisioner.png │ │ ├── pvc.png │ │ └── storageclass.png │ ├── eks-secrets-flow-small-1-1024x621.png │ ├── ekscwci │ │ ├── alarmconfig.png │ │ ├── alertdescription.png │ │ ├── configactions.png │ │ ├── createalarm.png │ │ ├── insight_logs_01.png │ │ ├── insight_logs_02.png │ │ ├── insight_logs_03.png │ │ ├── insights.png │ │ ├── metriceksservice.png │ │ ├── metricsoptions.png │ │ ├── metricsview.png │ │ ├── metrictime.png │ │ ├── sampleemail.png │ │ ├── snsemail.png │ │ ├── switches.gif │ │ ├── viewinmetrics.png │ │ ├── wordpresslogo.png │ │ ├── wp_hello_world.png │ │ ├── wpdashboard.png │ │ └── wploginpage.png │ ├── empty-platform.svg │ ├── emr-on-eks │ │ ├── cloudwatch-log-result.png │ │ ├── cloudwatch-logs1.png │ │ ├── cloudwatch-stdout-1.png │ │ ├── dra-spark-log.png │ │ ├── executor_log.png │ │ ├── fargate_autoscaling.png │ │ ├── grafana_1.png │ │ ├── green-cab-nyc.png │ │ ├── job_hang.png │ │ ├── not_enough_vcpu.png │ │ ├── s3logs.png │ │ ├── spark_history_1.png │ │ ├── spark_history_2.png │ │ ├── spark_history_3.png │ │ ├── spark_log.png │ │ ├── submitter_terminate.png │ │ ├── threadsleep_dra.png │ │ ├── virtual-cluster1.png │ │ ├── virtual-cluster2.png │ │ └── yellow-cab-nyc.png │ ├── enable-metrics.png │ ├── event-engine-aws-console.png │ ├── event-engine-dashboard.png │ ├── event-engine-initial-screen.png │ ├── expose-service │ │ └── ingress.png │ ├── fargate │ │ ├── Browser.png │ │ ├── IPMode.png │ │ ├── InstanceMode.png │ │ ├── LoadBalancer.png │ │ └── LoadBalancerTargets.png │ ├── favicon.ico │ ├── favicon.png │ ├── favicon.svg │ ├── flow-log-entry.png │ ├── flow-visualizer-filter.png │ ├── flow-visualizer.png │ ├── frontend.svg │ ├── grafana-all-nodes.png │ ├── grafana-all-pods.png │ ├── helm-logo.svg │ ├── helm-nginx │ │ └── welcome_to_nginx.png │ ├── helm_micro │ │ └── micro_example.png │ ├── iam-1-create-user.png │ ├── iam-2-attach-policy.png │ ├── iam-3-create-user.png │ ├── iam-4-save-url.png │ ├── icon-aws-amazon-eks.svg │ ├── introduction │ │ ├── Deck_QuestionMark.png │ │ ├── architecture_control.png │ │ ├── architecture_control_and_data_overview.png │ │ ├── architecture_worker.png │ │ ├── architecture_worker_compact.png │ │ ├── eks-architecture.svg │ │ ├── eks-customers.svg │ │ ├── eks-high-level.svg │ │ ├── eks-k8s-control-plane.svg │ │ ├── eks-product-page.png │ │ ├── k8s.png │ │ ├── title.png │ │ └── what_is_k8s_new.png │ ├── irsa │ │ └── irsa-oidc.png │ ├── istio │ │ ├── istio-intro1.png │ │ ├── istio_architecture.svg │ │ ├── istio_bookinfo_1.png │ │ ├── istio_bookinfo_architecture.png │ │ ├── istio_bookinfo_timeout_error.png │ │ ├── istio_bookinfo_timeout_error2.png │ │ ├── istio_bookinfo_timeout_no_error.png │ │ ├── istio_grafana1.png │ │ ├── istio_grafana_fullscreen.png │ │ ├── istio_grafana_open.png │ │ ├── istio_kiali_graph.png │ │ ├── istio_kiali_metrics.png │ │ ├── istio_kiali_open.png │ │ └── istio_kiali_popout.png │ ├── jenkins │ │ ├── jenkins-codecommititem.png │ │ ├── jenkins-eksworkshop-app-master.png │ │ ├── jenkins-gitcredentials.png │ │ ├── jenkins-login.png │ │ ├── jenkins-new-credentials.png │ │ ├── jenkins-newitem.png │ │ └── jenkins-projectsetup.png │ ├── karpenter_banner.png │ ├── kibana-flow-log.png │ ├── kube_ops_view │ │ ├── kube-ops-view-legend.png │ │ └── kube-ops-view.png │ ├── kubeflow │ │ ├── dashboard-create-namespace.png │ │ ├── dashboard-first-look.png │ │ ├── dashboard-login.png │ │ ├── dashboard-new-notebook-server.png │ │ ├── dashboard-welcome.png │ │ ├── distributed-training-notebook.jpg │ │ ├── eks-kubeflow-workshop-notebook-server.png │ │ ├── fairing-call-prediction.png │ │ ├── fairing-create-ecr-repo.png │ │ ├── fairing-deploy-prediction.png │ │ ├── fairing-e2e.png │ │ ├── fairing-ecr-login.png │ │ ├── fairing-git-clone.png │ │ ├── fairing-install-from-github.png │ │ ├── fairing-remote-job.png │ │ ├── fairing-shutdown-notebook.png │ │ ├── fairing-train-locally.png │ │ ├── fairing-validate-installed-packages.png │ │ ├── fairing-view-introduction-notebook.png │ │ ├── fairing-xgboost-local.png │ │ ├── fairing-xgboost-remote.png │ │ ├── jupyter-empty-notebook.png │ │ ├── jupyter-enter-notebook-server-name.png │ │ ├── jupyter-mnist-code-main.png │ │ ├── jupyter-mnist-code.png │ │ ├── jupyter-mnist-training.png │ │ ├── jupyter-new-notebook.png │ │ ├── jupyter-new-python3-notebook.png │ │ ├── jupyter-notebook-servers.png │ │ ├── jupyter-select-cpu.png │ │ ├── jupyter-select-image.png │ │ ├── jupyter-select-namespace.png │ │ ├── kubeflow.svg │ │ ├── pipelines-deploy.png │ │ ├── pipelines-run-logs.png │ │ ├── pipelines-sagemaker-endpoint.png │ │ ├── pipelines-sagemaker-execution-role.png │ │ ├── pipelines-sagemaker-experiment-run.png │ │ ├── pipelines-sagemaker-experiment.png │ │ ├── pipelines-sagemaker-overview.png │ │ ├── pipelines-sagemaker-predictions.png │ │ └── pipelines-view-sagemaker-notebook.png │ ├── logging │ │ ├── logging_os_dashboard.png │ │ ├── opensearch_01.png │ │ ├── opensearch_02.png │ │ ├── opensearch_03.png │ │ ├── opensearch_04.png │ │ ├── opensearch_05.png │ │ ├── opensearch_06.png │ │ ├── opensearch_07.png │ │ ├── opensearch_08.png │ │ └── opensearch_09.png │ ├── migrate_to_eks │ │ ├── configure-eks-cluster-vpc-peering.png │ │ ├── counter-app.gif │ │ ├── counter-application-from-kind-cluster.png │ │ ├── create-kind-cluster.png │ │ ├── database-moved-to-eks.png │ │ └── front-end-moved-to-eks.png │ ├── nodejs.svg │ ├── ocean │ │ ├── actions_cluster_roll.png │ │ ├── actions_customize_scaling.png │ │ ├── actions_delete.png │ │ ├── actions_launch_specs.png │ │ ├── chat.png │ │ ├── choose_cloud_provider.png │ │ ├── cluster_roll_configuration.png │ │ ├── cluster_roll_tab.png │ │ ├── compute_settings.png │ │ ├── connect_aws_account.png │ │ ├── connectivity.png │ │ ├── create-virtual-node-group.png │ │ ├── customize_scaling.png │ │ ├── delete_cluster.png │ │ ├── delete_role.png │ │ ├── delete_stack.png │ │ ├── general_settings.png │ │ ├── launch_spec_1.png │ │ ├── launch_spec_2.png │ │ ├── launch_specs.png │ │ ├── log_tab.png │ │ ├── logs_scale_down.png │ │ ├── new-virtual-node-group-form.png │ │ ├── ocean_overview.png │ │ ├── overview-headroom-modal.png │ │ ├── overview-headroom.png │ │ ├── review.png │ │ ├── rightsizing.png │ │ ├── rightsizing_1.png │ │ ├── rightsizing_2.png │ │ ├── scale_down_asg.png │ │ ├── scale_up_details.png │ │ ├── scale_up_log.png │ │ ├── showback.png │ │ ├── showback_filter.png │ │ ├── spot_logo.png │ │ ├── use_cases.png │ │ └── virtual-node-group-tab.png │ ├── opa │ │ ├── opa-service.png │ │ └── opa-service.svg │ ├── pixie │ │ ├── http_request_error.png │ │ ├── mysql_request_error.png │ │ ├── px_cluster.png │ │ ├── px_namespace.png │ │ ├── px_service.png │ │ ├── px_service_error.png │ │ ├── script_editor.png │ │ ├── select_cluster.png │ │ ├── select_namespace.png │ │ ├── select_script.png │ │ ├── select_starttime.png │ │ ├── service_deeplink.png │ │ └── sock_shop.png │ ├── policy-diff.png │ ├── policy-evaluation-tiers.png │ ├── policy-impact.png │ ├── policy-recommendations.png │ ├── popout.png │ ├── portal_buttons.png │ ├── portal_logged_in.png │ ├── portal_login.png │ ├── prerequisites │ │ ├── c9attachrole.png │ │ ├── c9disableiam.png │ │ ├── c9instancerole.png │ │ ├── cloud9-1.png │ │ ├── cloud9-2.png │ │ ├── cloud9-3.png │ │ ├── cloud9-4.png │ │ ├── cloud9-role.png │ │ └── createrole.png │ ├── prometheus-targets.png │ ├── rogue-pod-view.png │ ├── scaling-asg-config.png │ ├── scaling-asg-up.png │ ├── scaling-asg-up2.png │ ├── scaling-asg.png │ ├── scaling-cp-https.png │ ├── scaling-cp-outbound.png │ ├── scaling-ec2-sg.png │ ├── scaling-hpa-results.png │ ├── secret-in-secretsManager.png │ ├── sg-list.png │ ├── sg-per-pod │ │ ├── sg-per-pod_1.png │ │ ├── sg-per-pod_2.png │ │ ├── sg-per-pod_3.png │ │ ├── sg-per-pod_4.png │ │ ├── sg-per-pod_5.png │ │ └── sg-per-pod_6.png │ ├── specific-flows.png │ ├── spinnnaker │ │ ├── application.png │ │ ├── architecture-s.png │ │ ├── architecture.png │ │ ├── bake.png │ │ ├── bake2.png │ │ ├── bake3.png │ │ ├── deploy.png │ │ ├── deploy1.png │ │ ├── deploy2.png │ │ ├── details.png │ │ ├── details1.png │ │ ├── details2.png │ │ ├── hdeploy1.png │ │ ├── hdeploy2.png │ │ ├── hdeploy3.png │ │ ├── helmpipeline.png │ │ ├── manifest1.png │ │ ├── manual.png │ │ ├── pipeline.png │ │ ├── pipelines.png │ │ ├── proddetail.png │ │ ├── s3bucket.png │ │ ├── s3bucketdetail.png │ │ ├── step1.png │ │ ├── step2.png │ │ ├── step3.png │ │ ├── test.png │ │ ├── test2.png │ │ ├── test3.png │ │ ├── test4.png │ │ ├── test5.png │ │ ├── test6.png │ │ ├── test7.png │ │ ├── trigger.png │ │ └── ui.png │ ├── spotworkers │ │ ├── asg_configuration.png │ │ ├── instance_taints.png │ │ ├── rebalance_recommendation.png │ │ ├── spot_diagram.png │ │ ├── spot_diagram2.png │ │ ├── spot_get_ds.png │ │ ├── spot_get_nodes.png │ │ ├── spot_get_od.png │ │ ├── spot_get_spot.png │ │ ├── spot_instance_replacement.png │ │ ├── spot_nodegroup_arch.png │ │ └── spot_rebalance_recommendation.png │ ├── statefulset │ │ └── ebs_volume.png │ ├── static-site.png │ ├── storefront-application.png │ ├── tigera-logo.png │ ├── tsce-cloudwatch-logs.png │ ├── tsce-cloudwatch-metrics.png │ ├── weave_flux │ │ ├── cloudformation_stack.png │ │ ├── cloudformation_stack_creating.png │ │ ├── codepipeline_details.png │ │ ├── github_copy_access.png │ │ ├── github_create_k8s.png │ │ ├── github_create_sample_app.png │ │ ├── github_token_name.png │ │ └── gitops_workflow.png │ ├── windows │ │ ├── eks_cluster_win_linux.png │ │ ├── ssm_connect.png │ │ ├── windows_iis_welcome.png │ │ ├── windows_nodes.png │ │ └── windows_select_node.png │ ├── x-ray │ │ ├── daemon_status.png │ │ ├── overview.png │ │ ├── service_map.png │ │ ├── trace.png │ │ └── traces.png │ └── zone-based-arch.png ├── js │ ├── jquery-3.3.1.min.js │ └── jquery-ui-1.12.1.min.js ├── manifest.json ├── mermaid │ └── mermaid.min.js └── sw.js └── templates ├── amazon-eks-nodegroup-with-mixed-instances.yml ├── amazon-eks-nodegroup-with-spot.yml ├── ci-cd-codepipeline.cfn.yml ├── example1.yml ├── example2.yml ├── example3.yml └── weave_flux_pipeline.cfn.yml /.github/CODEOWNERS: -------------------------------------------------------------------------------- 1 | codebuild-deploy.sh @aws-samples/k8s-content-admins 2 | config.toml @aws-samples/k8s-content-admins 3 | package-lock.json @aws-samples/k8s-content-admins 4 | package.json @aws-samples/k8s-content-admins 5 | 6 | -------------------------------------------------------------------------------- /.github/PULL_REQUEST_TEMPLATE.md: -------------------------------------------------------------------------------- 1 | This repository is in maintenance mode and currently only accepting bug-fixes. PRs for new content should be adapted for the new EKS Workshop: https://github.com/aws-samples/eks-workshop-v2 2 | 3 | *Issue #, if available:* 4 | 5 | *Description of changes:* 6 | 7 | 8 | By submitting this pull request, I confirm that you can use, modify, copy, and redistribute this contribution, under the terms of your choice. 9 | -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | public/ 2 | npm-debug.log 3 | node_modules 4 | public 5 | terraform/.terraform 6 | terraform.tfstate 7 | terraform.tfstate.backup 8 | .DS_Store 9 | *.swp 10 | .vscode 11 | -------------------------------------------------------------------------------- /.gitmodules: -------------------------------------------------------------------------------- 1 | [submodule "themes/learn"] 2 | path = themes/learn 3 | url = https://github.com/brentley/hugo-theme-learn.git 4 | -------------------------------------------------------------------------------- /.gitpod.yml: -------------------------------------------------------------------------------- 1 | tasks: 2 | - init: npm install && npm run build 3 | -------------------------------------------------------------------------------- /CODE_OF_CONDUCT.md: -------------------------------------------------------------------------------- 1 | ## Code of Conduct 2 | This project has adopted the [Amazon Open Source Code of Conduct](https://aws.github.io/code-of-conduct). 3 | For more information see the [Code of Conduct FAQ](https://aws.github.io/code-of-conduct-faq) or contact 4 | opensource-codeofconduct@amazon.com with any additional questions or comments. 5 | -------------------------------------------------------------------------------- /amplify.yml.readme: -------------------------------------------------------------------------------- 1 | Amplify project setup: 2 | - connect repo 3 | - configure env variables to include TEMPLATE_BUCKET and GITHUB_TOKEN 4 | - configure service role 5 | -------------------------------------------------------------------------------- /archetypes/default.md: -------------------------------------------------------------------------------- 1 | --- 2 | title: "{{ replace .Name "-" " " | title }}" 3 | date: {{ .Date }} 4 | draft: true 5 | --- 6 | 7 | -------------------------------------------------------------------------------- /content/010_introduction/architecture/_index.md: -------------------------------------------------------------------------------- 1 | --- 2 | title: "Kubernetes Architecture" 3 | date: 2018-10-03T10:17:52-07:00 4 | draft: false 5 | weight: 80 6 | --- 7 | 8 | In this section, we'll cover the following topics: 9 | 10 | {{% children showhidden="false" %}} 11 | -------------------------------------------------------------------------------- /content/010_introduction/basics/_index.md: -------------------------------------------------------------------------------- 1 | --- 2 | title: "Kubernetes (k8s) Basics" 3 | date: 2018-10-03T10:14:32-07:00 4 | draft: false 5 | weight: 20 6 | --- 7 | 8 | In this section, we'll cover the following topics: 9 | 10 | {{% children showhidden="false" %}} 11 | -------------------------------------------------------------------------------- /content/010_introduction/basics/what_is_k8s.md: -------------------------------------------------------------------------------- 1 | --- 2 | title: "What is Kubernetes" 3 | date: 2018-10-03T10:14:46-07:00 4 | draft: false 5 | weight: 30 6 | --- 7 | 8 | ![K8s summary image](/images/introduction/what_is_k8s_new.png) 9 | 10 | * Built on over a decade of experience and best practices 11 | * Utilizes declarative configuration and automation 12 | * Draws upon a large ecosystem of tools, services, support 13 | 14 | More information on what Kubernetes is all about can be found on the [official Kubernetes website](https://kubernetes.io/docs/concepts/overview/what-is-kubernetes/). 15 | -------------------------------------------------------------------------------- /content/010_introduction/eks/_index.md: -------------------------------------------------------------------------------- 1 | --- 2 | title: "Amazon EKS" 3 | date: 2018-10-03T10:14:32-07:00 4 | draft: false 5 | weight: 90 6 | --- 7 | 8 | In this section, we'll cover the following topics: 9 | 10 | {{% children showhidden="false" %}} 11 | 12 | -------------------------------------------------------------------------------- /content/010_introduction/eks/eks_control_plane.md: -------------------------------------------------------------------------------- 1 | --- 2 | title: "What happens when you create your EKS cluster" 3 | date: 2018-10-03T10:23:24-07:00 4 | draft: false 5 | weight: 140 6 | --- 7 | 8 | 9 | ![EKS Control Plane](/images/introduction/eks-k8s-control-plane.svg) 10 | -------------------------------------------------------------------------------- /content/010_introduction/eks/eks_customers.md: -------------------------------------------------------------------------------- 1 | --- 2 | title: "EKS Cluster Creation Workflow" 3 | date: 2018-10-03T10:23:24-07:00 4 | draft: false 5 | weight: 130 6 | --- 7 | 8 | 9 | ![EKS Customers](/images/introduction/eks-customers.svg) 10 | -------------------------------------------------------------------------------- /content/010_introduction/eks/eks_high_architecture.md: -------------------------------------------------------------------------------- 1 | --- 2 | title: "EKS Architecture for Control plane and Worker node communication" 3 | date: 2018-10-03T10:23:24-07:00 4 | draft: false 5 | weight: 150 6 | --- 7 | 8 | 9 | ![EKS Architecture](/images/introduction/eks-architecture.svg) 10 | -------------------------------------------------------------------------------- /content/010_introduction/eks/eks_high_level.md: -------------------------------------------------------------------------------- 1 | --- 2 | title: "High Level" 3 | date: 2018-10-03T10:23:24-07:00 4 | draft: false 5 | weight: 150 6 | --- 7 | 8 | 9 | Once your EKS cluster is ready, you get an API endpoint and you'd [use Kubectl, community developed tool to interact with your cluster.](https://kubernetes.io/docs/reference/kubectl/kubectl/) 10 | 11 | ![EKS High Level](/images/introduction/eks-high-level.svg) 12 | -------------------------------------------------------------------------------- /content/010_introduction/eks/stay_tuned.md: -------------------------------------------------------------------------------- 1 | --- 2 | title: "Amazon EKS!" 3 | date: 2018-10-03T10:23:24-07:00 4 | draft: false 5 | weight: 160 6 | --- 7 | 8 | Stay tuned as we continue the journey with EKS in the next module! 9 | 10 | Always ask questions! Feel free to ask them in person during this workshop, or any time on the official Kubernetes Slack channel accessible via http://slack.k8s.io/. 11 | -------------------------------------------------------------------------------- /content/020_prerequisites/ap-southeast-1.md: -------------------------------------------------------------------------------- 1 | --- 2 | title: "Singapore" 3 | chapter: false 4 | disableToc: true 5 | hidden: true 6 | --- 7 | 8 | Create a Cloud9 Environment: [https://ap-southeast-1.console.aws.amazon.com/cloud9/home?region=ap-southeast-1](https://ap-southeast-1.console.aws.amazon.com/cloud9/home?region=ap-southeast-1?name=eksworkshop&instanceType=t3.small) 9 | -------------------------------------------------------------------------------- /content/020_prerequisites/aws_event/_index.md: -------------------------------------------------------------------------------- 1 | --- 2 | title: "...at an AWS event" 3 | chapter: true 4 | weight: 12 5 | --- 6 | 7 | ### Running the workshop at an AWS Event 8 | 9 | {{% notice warning %}} 10 | Only complete this section if you are at an AWS hosted event (such as re:Invent, 11 | Kubecon, Immersion Day, or any other event hosted by an AWS employee). If you are running the workshop on your own, go to: 12 | 13 | [Start the workshop on your own](../self_paced/). 14 | {{% /notice %}} 15 | 16 | {{% children %}} 17 | -------------------------------------------------------------------------------- /content/020_prerequisites/clone.md: -------------------------------------------------------------------------------- 1 | --- 2 | title: "Clone the Service Repos" 3 | chapter: false 4 | weight: 23 5 | --- 6 | 7 | ``` 8 | cd ~/environment 9 | git clone https://github.com/aws-containers/ecsdemo-frontend.git 10 | git clone https://github.com/aws-containers/ecsdemo-nodejs.git 11 | git clone https://github.com/aws-containers/ecsdemo-crystal.git 12 | ``` 13 | -------------------------------------------------------------------------------- /content/020_prerequisites/ec2instance.md: -------------------------------------------------------------------------------- 1 | --- 2 | title: "Attach the IAM role to your Workspace" 3 | chapter: false 4 | weight: 17 5 | --- 6 | 7 | 1. Click the grey circle button (in top right corner) and select **Manage EC2 Instance**. 8 | ![cloud9Role](/images/prerequisites/cloud9-role.png) 9 | 1. Select the instance, then choose **Actions / Security / Modify IAM Role** 10 | ![c9instancerole](/images/prerequisites/c9instancerole.png) 11 | 1. Choose **eksworkshop-admin** from the **IAM Role** drop down, and select **Save** 12 | ![c9attachrole](/images/prerequisites/c9attachrole.png) 13 | -------------------------------------------------------------------------------- /content/020_prerequisites/eu-west-1.md: -------------------------------------------------------------------------------- 1 | --- 2 | title: "Ireland" 3 | chapter: false 4 | disableToc: true 5 | hidden: true 6 | --- 7 | 8 | Create a Cloud9 Environment: [https://eu-west-1.console.aws.amazon.com/cloud9/home?region=eu-west-1](https://eu-west-1.console.aws.amazon.com/cloud9/home?region=eu-west-1?name=eksworkshop&instanceType=t3.small) 9 | -------------------------------------------------------------------------------- /content/020_prerequisites/gitclone.md: -------------------------------------------------------------------------------- 1 | --- 2 | title: "Clone the Workshop Repository" 3 | chapter: false 4 | weight: 65 5 | draft: true 6 | comment: disabled since eksctl doesn't require it 7 | --- 8 | 9 | We have a repository of tools to help with the remaining workshop. Clone the 10 | repository to your local workspace with this command: 11 | ``` 12 | cd ~/environment 13 | git clone https://github.com/mandusm/howto-launch-eks-workshop.git 14 | ``` 15 | -------------------------------------------------------------------------------- /content/020_prerequisites/self_paced/_index.md: -------------------------------------------------------------------------------- 1 | --- 2 | title: "...on your own" 3 | chapter: true 4 | weight: 11 5 | --- 6 | 7 | ### Running the workshop on your own 8 | 9 | 10 | {{% notice warning %}} 11 | Only complete this section if you are running the workshop on your own. If you are at an AWS hosted event (such as re:Invent, Kubecon, Immersion Day, etc), go to [Start the workshop at an AWS event](../aws_event/). 12 | {{% /notice %}} 13 | 14 | {{% children %}} 15 | -------------------------------------------------------------------------------- /content/020_prerequisites/self_paced/ap-southeast-1.md: -------------------------------------------------------------------------------- 1 | --- 2 | title: "Singapore" 3 | chapter: false 4 | disableToc: true 5 | hidden: true 6 | --- 7 | 8 | Create a Cloud9 Environment: [https://ap-southeast-1.console.aws.amazon.com/cloud9/home?region=ap-southeast-1](https://ap-southeast-1.console.aws.amazon.com/cloud9/home?region=ap-southeast-1) 9 | -------------------------------------------------------------------------------- /content/020_prerequisites/self_paced/eu-west-1.md: -------------------------------------------------------------------------------- 1 | --- 2 | title: "Ireland" 3 | chapter: false 4 | disableToc: true 5 | hidden: true 6 | --- 7 | 8 | Create a Cloud9 Environment: [https://eu-west-1.console.aws.amazon.com/cloud9/home?region=eu-west-1](https://eu-west-1.console.aws.amazon.com/cloud9/home?region=eu-west-1) 9 | -------------------------------------------------------------------------------- /content/020_prerequisites/self_paced/us-east-2.md: -------------------------------------------------------------------------------- 1 | --- 2 | title: "Ohio" 3 | chapter: false 4 | disableToc: true 5 | hidden: true 6 | --- 7 | 8 | Create a Cloud9 Environment: [https://us-east-2.console.aws.amazon.com/cloud9/home?region=us-east-2](https://us-east-2.console.aws.amazon.com/cloud9/home?region=us-east-2) 9 | -------------------------------------------------------------------------------- /content/020_prerequisites/self_paced/us-west-2.md: -------------------------------------------------------------------------------- 1 | --- 2 | title: "Oregon" 3 | chapter: false 4 | disableToc: true 5 | hidden: true 6 | --- 7 | 8 | Create a Cloud9 Environment: [https://us-west-2.console.aws.amazon.com/cloud9/home?region=us-west-2](https://us-west-2.console.aws.amazon.com/cloud9/home?region=us-west-2) 9 | -------------------------------------------------------------------------------- /content/020_prerequisites/us-east-2.md: -------------------------------------------------------------------------------- 1 | --- 2 | title: "Ohio" 3 | chapter: false 4 | disableToc: true 5 | hidden: true 6 | --- 7 | 8 | Create a Cloud9 Environment: [https://us-east-2.console.aws.amazon.com/cloud9/home?region=us-east-2](https://us-east-2.console.aws.amazon.com/cloud9/home?region=us-east-2?name=eksworkshop&instanceType=t3.small) 9 | -------------------------------------------------------------------------------- /content/020_prerequisites/us-west-2.md: -------------------------------------------------------------------------------- 1 | --- 2 | title: "Oregon" 3 | chapter: false 4 | disableToc: true 5 | hidden: true 6 | --- 7 | 8 | Create a Cloud9 Environment: [https://us-west-2.console.aws.amazon.com/cloud9/home?region=us-west-2](https://us-west-2.console.aws.amazon.com/cloud9/home?region=us-west-2?name=eksworkshop&instanceType=t3.small) 9 | -------------------------------------------------------------------------------- /content/910_conclusion/_index.md: -------------------------------------------------------------------------------- 1 | --- 2 | title: "Conclusion" 3 | chapter: true 4 | weight: 910 5 | tags: 6 | - beginner 7 | --- 8 | 9 | # Conclusion 10 | -------------------------------------------------------------------------------- /content/910_conclusion/conclusion.md: -------------------------------------------------------------------------------- 1 | --- 2 | title: "What Have We Accomplished" 3 | chapter: false 4 | weight: 1 5 | --- 6 | 7 | We have: 8 | 9 | - Deployed an application consisting of microservices 10 | - Deployed the Kubernetes Dashboard 11 | - Deployed packages using Helm 12 | - Deployed a centralized logging infrastructure 13 | - Configured Automatic scaling of our pods and worker nodes 14 | 15 | -------------------------------------------------------------------------------- /content/910_conclusion/survey.md: -------------------------------------------------------------------------------- 1 | +++ 2 | title = "Let us know what you think!" 3 | chapter = false 4 | weight = 60 5 | +++ 6 | 7 | - Please take our survey! 8 | {{% surveymonkey %}} 9 | -------------------------------------------------------------------------------- /content/920_cleanup/_index.md: -------------------------------------------------------------------------------- 1 | --- 2 | title: "Cleanup" 3 | chapter: true 4 | weight: 920 5 | tags: 6 | - beginner 7 | --- 8 | 9 | # Cleanup 10 | 11 | ![Cleaned Environment](/images/cleanup.svg) 12 | -------------------------------------------------------------------------------- /content/920_cleanup/others.md: -------------------------------------------------------------------------------- 1 | --- 2 | title: "Cleanup the Other Clusters" 3 | date: 2018-08-07T12:37:34-07:00 4 | weight: 5 5 | draft: true 6 | --- 7 | 8 | **If you haven't removed the earlier clusters already**, make sure to delete the first two clusters we created: 9 | 10 | [Follow the instructions here to delete the cluster we created with eksctl.](/eksctl/cleanup.html) 11 | 12 | [Follow the instructions here to delete the cluster we created with terraform.](/terraform/cleanup.html) 13 | 14 | [Follow the instructions here to delete the cluster we created with terraform.](/cloudformation/cleanup.html) 15 | -------------------------------------------------------------------------------- /content/920_cleanup/workspace.md: -------------------------------------------------------------------------------- 1 | --- 2 | title: "Cleanup the Workspace" 3 | chapter: false 4 | weight: 50 5 | --- 6 | 7 | Since we no longer need the Cloud9 instance to have Administrator access 8 | to our account, we can delete the workspace we created: 9 | 10 | - Go to your [Cloud9 Environment](https://console.aws.amazon.com/cloud9/home) 11 | - Select the environment named **eksworkshop** and pick **delete** 12 | -------------------------------------------------------------------------------- /content/_index.md: -------------------------------------------------------------------------------- 1 | --- 2 | title: "Amazon EKS Workshop" 3 | chapter: true 4 | weight: 1 5 | --- 6 | 7 | {{% notice note %}} 8 | For even more container related content, check out our new show: 9 | [Containers from the Couch](https://containersfromthecouch.com) 10 | {{% /notice %}} 11 | 12 |

Amazon EKS Workshop

13 | 14 | ![EKS](images/3-service-animated.gif) 15 | 16 | In this workshop, we will explore multiple ways to configure VPC, ALB, and EC2 17 | Kubernetes workers, and Amazon Elastic Kubernetes Service. 18 | -------------------------------------------------------------------------------- /content/advanced/420_kubeflow/kubeflow.files/Dockerfile.txt: -------------------------------------------------------------------------------- 1 | FROM tensorflow/tensorflow:1.13.1 2 | 3 | COPY mnist-tensorflow-docker.py /mnist-tensorflow-docker.py 4 | 5 | CMD [ "python", "mnist-tensorflow-docker.py" ] -------------------------------------------------------------------------------- /content/advanced/_index.md: -------------------------------------------------------------------------------- 1 | --- 2 | title: "Advanced" 3 | chapter: true 4 | weight: 70 5 | tags: 6 | - advanced 7 | --- 8 | # Advanced 9 | -------------------------------------------------------------------------------- /content/authors.md: -------------------------------------------------------------------------------- 1 | --- 2 | title: Credits 3 | disableToc: true 4 | --- 5 | 6 | ### Thanks to our wonderful contributors for making Open Source a better place! 7 | 8 | 11 | 12 | Please go to [Contributors page](https://github.com/aws-samples/eks-workshop/graphs/contributors) to checkout authors for this Workshop 13 | -------------------------------------------------------------------------------- /content/beginner/040_dashboard/_index.md: -------------------------------------------------------------------------------- 1 | --- 2 | title: "Deploy the Kubernetes Dashboard" 3 | chapter: true 4 | weight: 40 5 | pre: ' ' 6 | tags: 7 | - beginner 8 | - CON203 9 | --- 10 | 11 | # Deploy the Kubernetes Dashboard 12 | 13 | {{< youtube 0jWHTJ5Znt8 >}} 14 | 15 | In this Chapter, we will deploy the official Kubernetes dashboard, and connect 16 | through our Cloud9 Workspace. 17 | 18 | ![dashboard](/images/dashboard.png) 19 | -------------------------------------------------------------------------------- /content/beginner/040_dashboard/cleanup.md: -------------------------------------------------------------------------------- 1 | --- 2 | title: "Cleanup" 3 | date: 2020-07-08T09:36:58-04:00 4 | draft: false 5 | weight: 90 6 | tags: 7 | - beginner 8 | - CON203 9 | --- 10 | 11 | Stop the proxy and delete the dashboard deployment 12 | 13 | ```bash 14 | # kill proxy 15 | pkill -f 'kubectl proxy --port=8080' 16 | 17 | # delete dashboard 18 | kubectl delete -f https://raw.githubusercontent.com/kubernetes/dashboard/${DASHBOARD_VERSION}/aio/deploy/recommended.yaml 19 | 20 | unset DASHBOARD_VERSION 21 | ``` 22 | -------------------------------------------------------------------------------- /content/beginner/050_deploy/_index.md: -------------------------------------------------------------------------------- 1 | --- 2 | title: "Deploy the Example Microservices" 3 | chapter: true 4 | weight: 50 5 | pre: ' ' 6 | tags: 7 | - beginner 8 | - CON203 9 | --- 10 | 11 | # Deploy the Example Microservices 12 | 13 | {{< youtube _7S0bLyEIuI >}} 14 | 15 | ![microservices](/images/crystal.svg) 16 | {{% children showhidden="false" %}} 17 | -------------------------------------------------------------------------------- /content/beginner/050_deploy/deploycrystal.md: -------------------------------------------------------------------------------- 1 | --- 2 | title: "Deploy Crystal Backend API" 3 | date: 2018-09-18T17:40:03-05:00 4 | weight: 20 5 | --- 6 | 7 | Let’s bring up the Crystal Backend API! 8 | 9 | Copy/Paste the following commands into your Cloud9 workspace: 10 | 11 | ``` 12 | cd ~/environment/ecsdemo-crystal 13 | kubectl apply -f kubernetes/deployment.yaml 14 | kubectl apply -f kubernetes/service.yaml 15 | ``` 16 | 17 | We can watch the progress by looking at the deployment status: 18 | ``` 19 | kubectl get deployment ecsdemo-crystal 20 | ``` 21 | -------------------------------------------------------------------------------- /content/beginner/050_deploy/deploynodejs.md: -------------------------------------------------------------------------------- 1 | --- 2 | title: "Deploy NodeJS Backend API" 3 | date: 2018-09-18T17:39:30-05:00 4 | weight: 10 5 | --- 6 | 7 | Let’s bring up the NodeJS Backend API! 8 | 9 | Copy/Paste the following commands into your Cloud9 workspace: 10 | 11 | ``` 12 | cd ~/environment/ecsdemo-nodejs 13 | kubectl apply -f kubernetes/deployment.yaml 14 | kubectl apply -f kubernetes/service.yaml 15 | ``` 16 | 17 | We can watch the progress by looking at the deployment status: 18 | ``` 19 | kubectl get deployment ecsdemo-nodejs 20 | ``` 21 | -------------------------------------------------------------------------------- /content/beginner/050_deploy/scalefrontend.md: -------------------------------------------------------------------------------- 1 | --- 2 | title: "Scale the Frontend" 3 | date: 2018-09-18T17:40:09-05:00 4 | weight: 60 5 | --- 6 | 7 | #### Challenge: 8 | **Let's also scale our frontend service!** 9 | 10 | {{%expand "Expand here to see the solution" %}} 11 | ``` 12 | kubectl get deployments 13 | kubectl scale deployment ecsdemo-frontend --replicas=3 14 | kubectl get deployments 15 | ``` 16 | {{% /expand %}} 17 | 18 | Check the browser tab where we can see our application running. You should 19 | now see traffic flowing to multiple frontend services. 20 | -------------------------------------------------------------------------------- /content/beginner/060_helm/helm_micro/_index.md: -------------------------------------------------------------------------------- 1 | --- 2 | title: "Deploy Example Microservices Using Helm" 3 | chapter: true 4 | weight: 80 5 | --- 6 | 7 | ## Deploy Example Microservices Using Helm 8 | 9 | In this chapter, we will demonstrate how to deploy microservices using a custom 10 | Helm Chart, instead of doing everything manually using `kubectl`. 11 | 12 | For detailed information on working with chart templates, refer to the [**Helm 13 | docs**](https://docs.helm.sh/chart_template_guide/). 14 | -------------------------------------------------------------------------------- /content/beginner/060_helm/helm_micro/cleanup.md: -------------------------------------------------------------------------------- 1 | --- 2 | title: "Cleanup" 3 | date: 2018-08-07T08:30:11-07:00 4 | weight: 60 5 | --- 6 | 7 | To delete the workshop release, run: 8 | 9 | ```sh 10 | helm uninstall workshop 11 | ``` 12 | -------------------------------------------------------------------------------- /content/beginner/060_helm/helm_micro/service.md: -------------------------------------------------------------------------------- 1 | --- 2 | title: "Test the Service" 3 | date: 2018-08-07T08:30:11-07:00 4 | weight: 40 5 | --- 6 | 7 | To test the service our eksdemo Chart created, we'll need to get the name of the ELB endpoint that was generated when we deployed the Chart: 8 | 9 | ```sh 10 | kubectl get svc ecsdemo-frontend -o jsonpath="{.status.loadBalancer.ingress[*].hostname}"; echo 11 | ``` 12 | 13 | Copy that address, and paste it into a new tab in your browser. You should see something similar to: 14 | 15 | ![Example Service](/images/helm_micro/micro_example.png) 16 | -------------------------------------------------------------------------------- /content/beginner/060_helm/helm_nginx/_index.md: -------------------------------------------------------------------------------- 1 | --- 2 | title: "Deploy nginx With Helm" 3 | chapter: true 4 | weight: 70 5 | --- 6 | 7 | ## Deploy nginx With Helm 8 | 9 | In this Chapter, we will dig deeper with Helm and demonstrate how to install 10 | the nginx web server via the following steps: 11 | 12 | {{% children showhidden="false" %}} 13 | -------------------------------------------------------------------------------- /content/beginner/070_healthchecks/cleanup.md: -------------------------------------------------------------------------------- 1 | --- 2 | title: "Cleanup" 3 | chapter: false 4 | weight: 25 5 | --- 6 | Our Liveness Probe example used HTTP request and Readiness Probe executed a command to check health of a pod. Same can be accomplished using a TCP request as described in the [documentation](https://kubernetes.io/docs/tasks/configure-pod-container/configure-liveness-readiness-probes/). 7 | ``` 8 | kubectl delete -f ~/environment/healthchecks/liveness-app.yaml 9 | kubectl delete -f ~/environment/healthchecks/readiness-deployment.yaml 10 | ``` 11 | 12 | 13 | -------------------------------------------------------------------------------- /content/beginner/070_healthchecks/liveness.files/liveness-app.yaml: -------------------------------------------------------------------------------- 1 | apiVersion: v1 2 | kind: Pod 3 | metadata: 4 | name: liveness-app 5 | spec: 6 | containers: 7 | - name: liveness 8 | image: brentley/ecsdemo-nodejs 9 | livenessProbe: 10 | httpGet: 11 | path: /health 12 | port: 3000 13 | initialDelaySeconds: 5 14 | periodSeconds: 5 15 | -------------------------------------------------------------------------------- /content/beginner/090_rbac/_index.md: -------------------------------------------------------------------------------- 1 | --- 2 | title: "Intro to RBAC" 3 | chapter: true 4 | weight: 90 5 | pre: ' ' 6 | tags: 7 | - beginner 8 | - CON205 9 | --- 10 | # Intro to RBAC 11 | 12 | {{< youtube Q-b8tNQCmzs >}} 13 | 14 | In this chapter, we'll learn about how role based access control (RBAC) works in kubernetes. 15 | -------------------------------------------------------------------------------- /content/beginner/091_iam-groups/_index.md: -------------------------------------------------------------------------------- 1 | --- 2 | title: "Using IAM Groups to manage Kubernetes access" 3 | chapter: true 4 | weight: 91 5 | pre: ' ' 6 | tags: 7 | - beginner 8 | --- 9 | # Using IAM Groups to manage Kubernetes cluster access 10 | 11 | {{< youtube SaT5jn2f8Hk >}} 12 | 13 | In this chapter, we'll learn about how to simplify access to different parts of the kubernetes clusters 14 | depending on IAM Groups 15 | -------------------------------------------------------------------------------- /content/beginner/110_irsa/cleanup.md: -------------------------------------------------------------------------------- 1 | --- 2 | title: "Cleanup" 3 | date: 2021-07-20T00:00:00-03:00 4 | weight: 60 5 | draft: false 6 | --- 7 | 8 | To cleanup, follow these steps. 9 | 10 | ```bash 11 | kubectl delete -f ~/environment/irsa/job-s3.yaml 12 | kubectl delete -f ~/environment/irsa/job-ec2.yaml 13 | 14 | eksctl delete iamserviceaccount \ 15 | --name iam-test \ 16 | --namespace default \ 17 | --cluster eksworkshop-eksctl \ 18 | --wait 19 | 20 | rm -rf ~/environment/irsa/ 21 | 22 | aws s3 rb s3://eksworkshop-$ACCOUNT_ID-$AWS_REGION --region $AWS_REGION --force 23 | ``` 24 | -------------------------------------------------------------------------------- /content/beginner/120_network-policies/calico/stars_policy_demo/_index.md: -------------------------------------------------------------------------------- 1 | --- 2 | title: "Stars Policy Demo" 3 | chapter: true 4 | weight: 62 5 | --- 6 | 7 | # Stars Policy Demo 8 | 9 | In this sub-chapter we create frontend, backend, client and UI services on the EKS cluster and define network policies to allow or block communication between these services. This demo also has a management UI that shows the available ingress and egress paths between each service. 10 | -------------------------------------------------------------------------------- /content/beginner/120_network-policies/calico/stars_policy_demo/apply_network_policies.files/allow-ui-client.yaml: -------------------------------------------------------------------------------- 1 | kind: NetworkPolicy 2 | apiVersion: networking.k8s.io/v1 3 | metadata: 4 | namespace: client 5 | name: allow-ui 6 | spec: 7 | podSelector: 8 | matchLabels: {} 9 | ingress: 10 | - from: 11 | - namespaceSelector: 12 | matchLabels: 13 | role: management-ui -------------------------------------------------------------------------------- /content/beginner/120_network-policies/calico/stars_policy_demo/apply_network_policies.files/allow-ui.yaml: -------------------------------------------------------------------------------- 1 | kind: NetworkPolicy 2 | apiVersion: networking.k8s.io/v1 3 | metadata: 4 | namespace: stars 5 | name: allow-ui 6 | spec: 7 | podSelector: 8 | matchLabels: {} 9 | ingress: 10 | - from: 11 | - namespaceSelector: 12 | matchLabels: 13 | role: management-ui -------------------------------------------------------------------------------- /content/beginner/120_network-policies/calico/stars_policy_demo/apply_network_policies.files/default-deny.yaml: -------------------------------------------------------------------------------- 1 | kind: NetworkPolicy 2 | apiVersion: networking.k8s.io/v1 3 | metadata: 4 | name: default-deny 5 | spec: 6 | podSelector: 7 | matchLabels: {} -------------------------------------------------------------------------------- /content/beginner/120_network-policies/calico/stars_policy_demo/create_resources.files/namespace.yaml: -------------------------------------------------------------------------------- 1 | kind: Namespace 2 | apiVersion: v1 3 | metadata: 4 | name: stars -------------------------------------------------------------------------------- /content/beginner/130_exposing-service/_index.md: -------------------------------------------------------------------------------- 1 | --- 2 | title: "Exposing a Service" 3 | chapter: true 4 | weight: 130 5 | pre: ' ' 6 | tags: 7 | - beginner 8 | - CON203 9 | --- 10 | 11 | 12 | ### Introduction 13 | 14 | {{< youtube w_jIfzTe1Bc >}} 15 | 16 | In this Chapter, we will review how to configure a Service, Deployment or Pod to be exposed outside our cluster. We will also review the different ways to do so. 17 | -------------------------------------------------------------------------------- /content/beginner/140_assigning_pods/cleaning.md: -------------------------------------------------------------------------------- 1 | --- 2 | title: "Clean Up" 3 | date: 2019-04-09T00:00:00-03:00 4 | weight: 13 5 | draft: false 6 | --- 7 | 8 | ### Cleaning up 9 | 10 | To delete the resources used in this chapter 11 | 12 | ```bash 13 | kubectl delete -f ~/environment/redis-with-node-affinity.yaml 14 | kubectl delete -f ~/environment/web-with-node-affinity.yaml 15 | kubectl label nodes --all azname- 16 | kubectl label nodes --all disktype- 17 | ``` 18 | -------------------------------------------------------------------------------- /content/beginner/160_advanced-networking/_index.md: -------------------------------------------------------------------------------- 1 | --- 2 | title: "Advanced VPC Networking with EKS" 3 | chapter: true 4 | weight: 160 5 | pre: ' ' 6 | tags: 7 | - intermediate 8 | --- 9 | 10 | # Advanced VPC Networking with EKS 11 | 12 | {{< youtube 71sIZmIp96o >}} 13 | 14 | In this Chapter, we will review some of the advanced VPC networking features with EKS. 15 | -------------------------------------------------------------------------------- /content/beginner/185_bottlerocket/cleaning.md: -------------------------------------------------------------------------------- 1 | --- 2 | title: "Clean Up" 3 | date: 2021-05-26T00:00:00-03:00 4 | weight: 40 5 | draft: false 6 | --- 7 | 8 | ### Cleaning up 9 | 10 | To delete the resources used in this chapter: 11 | 12 | ```bash 13 | kubectl delete -f ~/environment/bottlerocket-nginx.yaml 14 | 15 | kubectl delete namespace bottlerocket-nginx 16 | 17 | eksctl delete nodegroup -f eksworkshop_bottlerocket.yaml --approve 18 | ``` 19 | -------------------------------------------------------------------------------- /content/beginner/190_efs/efs.files/efs-reader.yaml: -------------------------------------------------------------------------------- 1 | apiVersion: v1 2 | kind: Pod 3 | metadata: 4 | name: efs-reader 5 | namespace: storage 6 | spec: 7 | containers: 8 | - name: efs-reader 9 | image: busybox 10 | command: ["/bin/sh"] 11 | args: ["-c", "while true; do sleep 5; done"] 12 | volumeMounts: 13 | - name: efs-pvc 14 | mountPath: /shared 15 | volumes: 16 | - name: efs-pvc 17 | persistentVolumeClaim: 18 | claimName: efs-storage-claim 19 | -------------------------------------------------------------------------------- /content/beginner/191_secrets/cleanup.md: -------------------------------------------------------------------------------- 1 | --- 2 | title: "Cleanup The Lab" 3 | date: 2021-11-10T00:00:00-03:00 4 | weight: 12 5 | draft: false 6 | --- 7 | 8 | #### Remove The Namespace 9 | 10 | Let's delete the namespace for this exercise: 11 | 12 | ```bash 13 | rm -f test-creds 14 | rm -f podconsumingsecret.yaml 15 | kubectl delete ns secretslab 16 | ``` 17 | 18 | Output: 19 | 20 | {{< output >}} 21 | namespace "secretslab" deleted 22 | {{< /output >}} 23 | 24 | This cleans up the secret and pod we deployed for this lab. 25 | -------------------------------------------------------------------------------- /content/beginner/200_secrets/cleaning.md: -------------------------------------------------------------------------------- 1 | --- 2 | title: "Clean Up" 3 | date: 2021-07-15T00:00:00-03:00 4 | weight: 16 5 | draft: false 6 | --- 7 | 8 | Delete all the resources created in this module. 9 | ``` 10 | cd ~/environment/secrets 11 | kubectl delete Secret --all -n octank 12 | kubectl delete SealedSecret --all -n octank 13 | kubectl delete pod --all -n octank 14 | kubectl delete -f controller.yaml 15 | kubectl delete namespace octank 16 | ``` 17 | 18 | 19 | 20 | -------------------------------------------------------------------------------- /content/beginner/200_secrets/secrets.files/kustomization.yaml: -------------------------------------------------------------------------------- 1 | namespace: octank 2 | secretGenerator: 3 | - name: database-credentials 4 | literals: 5 | - username=admin 6 | - password=Tru5tN0! 7 | generatorOptions: 8 | disableNameSuffixHash: true 9 | -------------------------------------------------------------------------------- /content/beginner/_index.md: -------------------------------------------------------------------------------- 1 | --- 2 | title: "Beginner" 3 | chapter: true 4 | weight: 50 5 | tags: 6 | - beginner 7 | --- 8 | 9 | # Beginner 10 | -------------------------------------------------------------------------------- /content/intermediate/240_monitoring/cleanup.md: -------------------------------------------------------------------------------- 1 | --- 2 | title: "Cleanup" 3 | date: 2018-10-14T21:03:30-04:00 4 | weight: 25 5 | draft: false 6 | --- 7 | 8 | #### Uninstall Prometheus and Grafana 9 | 10 | ```bash 11 | helm uninstall prometheus --namespace prometheus 12 | kubectl delete ns prometheus 13 | 14 | helm uninstall grafana --namespace grafana 15 | kubectl delete ns grafana 16 | 17 | rm -rf ${HOME}/environment/grafana 18 | ``` 19 | -------------------------------------------------------------------------------- /content/intermediate/245_x-ray/daemonset.files/build.sh: -------------------------------------------------------------------------------- 1 | #!/bin/bash 2 | 3 | TAG=$(git log -1 --pretty=%H) 4 | 5 | REPOSITORY=trevorrobertsjr/eks-workshop-x-ray-daemon 6 | 7 | docker build --tag $REPOSITORY:$TAG . 8 | 9 | docker push $REPOSITORY:$TAG 10 | -------------------------------------------------------------------------------- /content/intermediate/245_x-ray/sample-back.files/.dockerignore: -------------------------------------------------------------------------------- 1 | *.swp 2 | .git 3 | .gitignore 4 | .DS_Store 5 | README.md 6 | Dockerfile 7 | build.sh 8 | eks-workshop-x-ray-sample-back 9 | -------------------------------------------------------------------------------- /content/intermediate/245_x-ray/sample-back.files/README.md: -------------------------------------------------------------------------------- 1 | # Sample back-end application instrumented with X-Ray SDK 2 | 3 | The example [AWS X-Ray](https://aws.amazon.com/xray/) instrumented back-end service in the [EKS Workshop](https://eksworkshop.com/) 4 | 5 | **Command reference** 6 | 7 | Deploy 8 | ``` 9 | kubectl apply -f x-ray-sample-back-k8s.yml 10 | ``` 11 | 12 | Delete 13 | ``` 14 | kubectl delete -f x-ray-sample-back-k8s.yml 15 | ``` 16 | 17 | -------------------------------------------------------------------------------- /content/intermediate/245_x-ray/sample-back.files/build.sh: -------------------------------------------------------------------------------- 1 | #!/bin/bash 2 | 3 | TAG=$(git log -1 --pretty=%H) 4 | 5 | REPOSITORY=rnzdocker1/eks-workshop-x-ray-sample-back 6 | 7 | docker build --tag $REPOSITORY:$TAG . 8 | 9 | docker push $REPOSITORY:$TAG 10 | -------------------------------------------------------------------------------- /content/intermediate/245_x-ray/sample-back.files/go.mod: -------------------------------------------------------------------------------- 1 | module github.com/aws-samples/eks-workshop/content/x-ray/sample-back 2 | 3 | require github.com/aws/aws-sdk-go v1.15.75 4 | 5 | require ( 6 | github.com/aws/aws-xray-sdk-go v1.0.0-rc.8 7 | github.com/cihub/seelog v0.0.0-20170130134532-f561c5e57575 // indirect 8 | github.com/pkg/errors v0.8.0 // indirect 9 | ) 10 | -------------------------------------------------------------------------------- /content/intermediate/245_x-ray/sample-front.files/.dockerignore: -------------------------------------------------------------------------------- 1 | *.swp 2 | .git 3 | .gitignore 4 | .DS_Store 5 | README.md 6 | Dockerfile 7 | build.sh 8 | eks-workshop-x-ray-sample-front 9 | -------------------------------------------------------------------------------- /content/intermediate/245_x-ray/sample-front.files/README.md: -------------------------------------------------------------------------------- 1 | # Sample front-end application instrumented with X-Ray SDK 2 | 3 | The example [AWS X-Ray](https://aws.amazon.com/xray/) instrumented front-end service in the [EKS Workshop](https://eksworkshop.com/) 4 | 5 | **Command reference** 6 | 7 | Deploy 8 | ``` 9 | kubectl apply -f x-ray-sample-front-k8s.yml 10 | ``` 11 | 12 | Delete 13 | ``` 14 | kubectl delete -f x-ray-sample-front-k8s.yml 15 | ``` 16 | 17 | -------------------------------------------------------------------------------- /content/intermediate/245_x-ray/sample-front.files/build.sh: -------------------------------------------------------------------------------- 1 | #!/bin/bash 2 | 3 | TAG=$(git log -1 --pretty=%H) 4 | 5 | REPOSITORY=rnzdocker1/eks-workshop-x-ray-sample-front 6 | 7 | docker build --tag $REPOSITORY:$TAG . 8 | 9 | docker push $REPOSITORY:$TAG 10 | -------------------------------------------------------------------------------- /content/intermediate/245_x-ray/sample-front.files/go.mod: -------------------------------------------------------------------------------- 1 | module github.com/aws-samples/eks-workshop/content/x-ray/sample-front 2 | 3 | require github.com/aws/aws-sdk-go v1.15.75 4 | 5 | require ( 6 | github.com/aws/aws-xray-sdk-go v1.0.0-rc.8 7 | github.com/cihub/seelog v0.0.0-20170130134532-f561c5e57575 // indirect 8 | github.com/pkg/errors v0.8.0 // indirect 9 | golang.org/x/net v0.0.0-20181114220301-adae6a3d119a 10 | ) 11 | -------------------------------------------------------------------------------- /content/intermediate/246_monitoring_amp_amg/amg_login.md: -------------------------------------------------------------------------------- 1 | --- 2 | title: "Login to AMG workspace" 3 | date: 2021-01-22T09:23:11-05:00 4 | draft: false 5 | weight: 60 6 | --- 7 | 8 | #### Login to AMG workspace 9 | 10 | Click on the Grafana workspace URL in the Summary section 11 | 12 | ![Login to AMG workspace](/images/amg/amg6.png) 13 | 14 | This will take you to the AWS SSO login screen, where you can provide the UserId and Password that you created as part of prerequisites. 15 | 16 | 17 | ![SSO screen](/images/amg/amg7.png) 18 | -------------------------------------------------------------------------------- /content/intermediate/250_cloudwatch_container_insights/img/alarmconfig.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/eks-workshop/2f9d29ed3f82ed6b083649e975a0e574fb8a4058/content/intermediate/250_cloudwatch_container_insights/img/alarmconfig.png -------------------------------------------------------------------------------- /content/intermediate/250_cloudwatch_container_insights/img/alertdescription.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/eks-workshop/2f9d29ed3f82ed6b083649e975a0e574fb8a4058/content/intermediate/250_cloudwatch_container_insights/img/alertdescription.png -------------------------------------------------------------------------------- /content/intermediate/250_cloudwatch_container_insights/img/attachperm.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/eks-workshop/2f9d29ed3f82ed6b083649e975a0e574fb8a4058/content/intermediate/250_cloudwatch_container_insights/img/attachperm.png -------------------------------------------------------------------------------- /content/intermediate/250_cloudwatch_container_insights/img/attachpolicy.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/eks-workshop/2f9d29ed3f82ed6b083649e975a0e574fb8a4058/content/intermediate/250_cloudwatch_container_insights/img/attachpolicy.png -------------------------------------------------------------------------------- /content/intermediate/250_cloudwatch_container_insights/img/configactions.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/eks-workshop/2f9d29ed3f82ed6b083649e975a0e574fb8a4058/content/intermediate/250_cloudwatch_container_insights/img/configactions.png -------------------------------------------------------------------------------- /content/intermediate/250_cloudwatch_container_insights/img/createalarm.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/eks-workshop/2f9d29ed3f82ed6b083649e975a0e574fb8a4058/content/intermediate/250_cloudwatch_container_insights/img/createalarm.png -------------------------------------------------------------------------------- /content/intermediate/250_cloudwatch_container_insights/img/cwdaemon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/eks-workshop/2f9d29ed3f82ed6b083649e975a0e574fb8a4058/content/intermediate/250_cloudwatch_container_insights/img/cwdaemon.png -------------------------------------------------------------------------------- /content/intermediate/250_cloudwatch_container_insights/img/ec2info.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/eks-workshop/2f9d29ed3f82ed6b083649e975a0e574fb8a4058/content/intermediate/250_cloudwatch_container_insights/img/ec2info.png -------------------------------------------------------------------------------- /content/intermediate/250_cloudwatch_container_insights/img/helminstalloutput.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/eks-workshop/2f9d29ed3f82ed6b083649e975a0e574fb8a4058/content/intermediate/250_cloudwatch_container_insights/img/helminstalloutput.png -------------------------------------------------------------------------------- /content/intermediate/250_cloudwatch_container_insights/img/insights.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/eks-workshop/2f9d29ed3f82ed6b083649e975a0e574fb8a4058/content/intermediate/250_cloudwatch_container_insights/img/insights.png -------------------------------------------------------------------------------- /content/intermediate/250_cloudwatch_container_insights/img/lboutput.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/eks-workshop/2f9d29ed3f82ed6b083649e975a0e574fb8a4058/content/intermediate/250_cloudwatch_container_insights/img/lboutput.png -------------------------------------------------------------------------------- /content/intermediate/250_cloudwatch_container_insights/img/metriceksservice.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/eks-workshop/2f9d29ed3f82ed6b083649e975a0e574fb8a4058/content/intermediate/250_cloudwatch_container_insights/img/metriceksservice.png -------------------------------------------------------------------------------- /content/intermediate/250_cloudwatch_container_insights/img/metricsoptions.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/eks-workshop/2f9d29ed3f82ed6b083649e975a0e574fb8a4058/content/intermediate/250_cloudwatch_container_insights/img/metricsoptions.png -------------------------------------------------------------------------------- /content/intermediate/250_cloudwatch_container_insights/img/metricsview.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/eks-workshop/2f9d29ed3f82ed6b083649e975a0e574fb8a4058/content/intermediate/250_cloudwatch_container_insights/img/metricsview.png -------------------------------------------------------------------------------- /content/intermediate/250_cloudwatch_container_insights/img/metrictime.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/eks-workshop/2f9d29ed3f82ed6b083649e975a0e574fb8a4058/content/intermediate/250_cloudwatch_container_insights/img/metrictime.png -------------------------------------------------------------------------------- /content/intermediate/250_cloudwatch_container_insights/img/sampleemail.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/eks-workshop/2f9d29ed3f82ed6b083649e975a0e574fb8a4058/content/intermediate/250_cloudwatch_container_insights/img/sampleemail.png -------------------------------------------------------------------------------- /content/intermediate/250_cloudwatch_container_insights/img/siegeextract.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/eks-workshop/2f9d29ed3f82ed6b083649e975a0e574fb8a4058/content/intermediate/250_cloudwatch_container_insights/img/siegeextract.png -------------------------------------------------------------------------------- /content/intermediate/250_cloudwatch_container_insights/img/siegerun.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/eks-workshop/2f9d29ed3f82ed6b083649e975a0e574fb8a4058/content/intermediate/250_cloudwatch_container_insights/img/siegerun.png -------------------------------------------------------------------------------- /content/intermediate/250_cloudwatch_container_insights/img/siegeversion.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/eks-workshop/2f9d29ed3f82ed6b083649e975a0e574fb8a4058/content/intermediate/250_cloudwatch_container_insights/img/siegeversion.png -------------------------------------------------------------------------------- /content/intermediate/250_cloudwatch_container_insights/img/ssnemail.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/eks-workshop/2f9d29ed3f82ed6b083649e975a0e574fb8a4058/content/intermediate/250_cloudwatch_container_insights/img/ssnemail.png -------------------------------------------------------------------------------- /content/intermediate/250_cloudwatch_container_insights/img/switches.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/eks-workshop/2f9d29ed3f82ed6b083649e975a0e574fb8a4058/content/intermediate/250_cloudwatch_container_insights/img/switches.gif -------------------------------------------------------------------------------- /content/intermediate/250_cloudwatch_container_insights/img/viewinmetrics.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/eks-workshop/2f9d29ed3f82ed6b083649e975a0e574fb8a4058/content/intermediate/250_cloudwatch_container_insights/img/viewinmetrics.png -------------------------------------------------------------------------------- /content/intermediate/250_cloudwatch_container_insights/img/wordpresslogo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/eks-workshop/2f9d29ed3f82ed6b083649e975a0e574fb8a4058/content/intermediate/250_cloudwatch_container_insights/img/wordpresslogo.png -------------------------------------------------------------------------------- /content/intermediate/250_cloudwatch_container_insights/img/wpdashboard.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/eks-workshop/2f9d29ed3f82ed6b083649e975a0e574fb8a4058/content/intermediate/250_cloudwatch_container_insights/img/wpdashboard.png -------------------------------------------------------------------------------- /content/intermediate/250_cloudwatch_container_insights/img/wplogin.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/eks-workshop/2f9d29ed3f82ed6b083649e975a0e574fb8a4058/content/intermediate/250_cloudwatch_container_insights/img/wplogin.png -------------------------------------------------------------------------------- /content/intermediate/250_cloudwatch_container_insights/img/wploginpage.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/eks-workshop/2f9d29ed3f82ed6b083649e975a0e574fb8a4058/content/intermediate/250_cloudwatch_container_insights/img/wploginpage.png -------------------------------------------------------------------------------- /content/intermediate/260_weave_flux/app.files/Dockerfile: -------------------------------------------------------------------------------- 1 | FROM public.ecr.aws/nginx/nginx 2 | RUN rm /etc/nginx/conf.d/* 3 | ADD src/hello.conf /etc/nginx/conf.d/ 4 | ADD src/index.html /usr/share/nginx/html/ 5 | -------------------------------------------------------------------------------- /content/intermediate/260_weave_flux/app.files/hello.conf: -------------------------------------------------------------------------------- 1 | server { 2 | listen 80; 3 | 4 | root /usr/share/nginx/html; 5 | try_files /index.html =404; 6 | 7 | expires -1; 8 | 9 | sub_filter_once off; 10 | sub_filter 'server_hostname' '$hostname'; 11 | sub_filter 'server_address' '$server_addr:$server_port'; 12 | sub_filter 'server_url' '$request_uri'; 13 | sub_filter 'server_date' '$time_local'; 14 | sub_filter 'request_id' '$request_id'; 15 | } 16 | -------------------------------------------------------------------------------- /content/intermediate/260_weave_flux/app.files/index.html: -------------------------------------------------------------------------------- 1 | 2 | Hello World 3 | 4 |
5 | Hello World! 6 |

Server address: server_address

7 |

Server name: server_hostname

8 |

Date: server_date

9 |

URI: server_url

10 |
11 | -------------------------------------------------------------------------------- /content/intermediate/260_weave_flux/iam.files/cbAssumeRolePolicyDocument.json: -------------------------------------------------------------------------------- 1 | { 2 | "Version": "2012-10-17", 3 | "Statement": [ 4 | { 5 | "Effect": "Allow", 6 | "Principal": { 7 | "Service": "codebuild.amazonaws.com" 8 | }, 9 | "Action": "sts:AssumeRole" 10 | } 11 | ] 12 | } 13 | -------------------------------------------------------------------------------- /content/intermediate/260_weave_flux/iam.files/cpAssumeRolePolicyDocument.json: -------------------------------------------------------------------------------- 1 | { 2 | "Version": "2012-10-17", 3 | "Statement": [ 4 | { 5 | "Effect": "Allow", 6 | "Principal": { 7 | "Service": "codepipeline.amazonaws.com" 8 | }, 9 | "Action": "sts:AssumeRole" 10 | } 11 | ] 12 | } 13 | -------------------------------------------------------------------------------- /content/intermediate/270_custom_resource_definition/cleaning.md: -------------------------------------------------------------------------------- 1 | --- 2 | title: "Clean Up" 3 | date: 2019-04-09T00:00:00-03:00 4 | weight: 14 5 | draft: false 6 | --- 7 | 8 | ### Cleaning up 9 | To delete the Custom Resource Definitions: 10 | ``` 11 | kubectl delete -f resourcedefinition.yaml 12 | kubectl get crontabs 13 | ``` 14 | -------------------------------------------------------------------------------- /content/intermediate/280_backup-and-restore/backupandrestore.files/storage-class.yaml: -------------------------------------------------------------------------------- 1 | kind: StorageClass 2 | apiVersion: storage.k8s.io/v1 3 | metadata: 4 | name: staging 5 | provisioner: kubernetes.io/aws-ebs 6 | parameters: 7 | type: gp2 8 | fsType: ext4 -------------------------------------------------------------------------------- /content/intermediate/300_cis_eks_benchmark/conclusion.md: -------------------------------------------------------------------------------- 1 | --- 2 | title: "Conclusion" 3 | weight: 40 4 | draft: false 5 | --- 6 | 7 | #### Conclusion 8 | 9 | In this chapter, we have explained: 10 | 11 | - CIS Kubernetes Benchmark and CIS Amazon EKS Benchmark; 12 | - Introduced `kube-bench` as an open source tool to assess against CIS Kubernetes Benchmarks; 13 | - Demonstrated steps to assess Amazon EKS clusters for managed and self managed nodes Kubernetes security configurations using `kube-bench`. -------------------------------------------------------------------------------- /content/intermediate/310_opa_gatekeeper/cleanup.md: -------------------------------------------------------------------------------- 1 | --- 2 | title: "Clean up" 3 | weight: 30 4 | draft: false 5 | --- 6 | 7 | #### Clean up steps 8 | 9 | ```bash 10 | kubectl delete -f https://raw.githubusercontent.com/open-policy-agent/gatekeeper/master/deploy/gatekeeper.yaml 11 | ``` 12 | 13 | Make sure that all the CRD were deleted: 14 | 15 | ```bash 16 | kubectl delete crd \ 17 | configs.config.gatekeeper.sh \ 18 | constraintpodstatuses.status.gatekeeper.sh \ 19 | constrainttemplatepodstatuses.status.gatekeeper.sh \ 20 | constrainttemplates.templates.gatekeeper.sh 21 | ``` -------------------------------------------------------------------------------- /content/intermediate/330_app_mesh/deploy_dj_app/_index.md: -------------------------------------------------------------------------------- 1 | --- 2 | title: "Deploy the DJ app" 3 | date: 2018-11-13T16:32:30+09:00 4 | weight: 10 5 | draft: false 6 | --- 7 | 8 | To understand `AWS App Mesh`, its best to also understand any applications that run on top of it. So in this chapter, we'll first walk you through creating a simple EKS-based k8s application called "The DJ App". 9 | 10 | Armed with the knowledge of how the DJ app works without a service mesh, you'll better understand the service mesh functionality App Mesh brings to the equation. 11 | -------------------------------------------------------------------------------- /content/intermediate/330_app_mesh/deploy_dj_app/clone_repo.md: -------------------------------------------------------------------------------- 1 | --- 2 | title: "Clone the Repo" 3 | date: 2018-08-07T08:30:11-07:00 4 | weight: 40 5 | --- 6 | 7 | To begin, clone the repository that holds the DJ App's files. 8 | 9 | ```bash 10 | # First, be sure you are in your environment directory 11 | cd ~/environment 12 | 13 | git clone https://github.com/aws/aws-app-mesh-examples 14 | 15 | # Change to the repo's project directory: 16 | cd aws-app-mesh-examples/examples/apps/djapp/ 17 | ``` 18 | -------------------------------------------------------------------------------- /content/intermediate/330_app_mesh/deploy_dj_app/conclusion.md: -------------------------------------------------------------------------------- 1 | --- 2 | title: "Conclusion" 3 | date: 2018-08-07T08:30:11-07:00 4 | weight: 80 5 | --- 6 | 7 | Congratulations on deploying the initial DJ App architecture! 8 | 9 | Before we create the App Mesh-enabled versions of DJ App, we'll first install the `AWS App Mesh Controller for Kubernetes` into our cluster. 10 | -------------------------------------------------------------------------------- /content/intermediate/330_app_mesh/install_app_mesh_controller/conclusion.md: -------------------------------------------------------------------------------- 1 | --- 2 | title: "Conclusion" 3 | date: 2018-08-07T08:30:11-07:00 4 | weight: 70 5 | --- 6 | 7 | Congratulations on installing the AWS App Mesh Controller for Kubernetes in your cluster! 8 | 9 | Next, we'll enable observability, analytics, and routing functionality into our DJ App by porting it to run within App Mesh, and we'll demonstrate how to simplify various types of deployments. 10 | -------------------------------------------------------------------------------- /content/intermediate/_index.md: -------------------------------------------------------------------------------- 1 | --- 2 | title: "Intermediate" 3 | chapter: true 4 | weight: 60 5 | tags: 6 | - intermediate 7 | --- 8 | # Intermediate 9 | -------------------------------------------------------------------------------- /content/tabs-example/tabs/_index.md: -------------------------------------------------------------------------------- 1 | --- 2 | title: "Embedded tab content" 3 | disableToc: true 4 | hidden: true 5 | --- 6 | -------------------------------------------------------------------------------- /content/tabs-example/tabs/eksctl.md: -------------------------------------------------------------------------------- 1 | --- 2 | title: "Launch EKS" 3 | date: 2018-08-07T13:34:24-07:00 4 | weight: 20 5 | --- 6 | 7 | To create a basic EKS cluster, run: 8 | ``` 9 | eksctl create cluster --name=eksworkshop-eksctl --nodes=3 --node-ami=auto --region=${AWS_REGION} 10 | ``` 11 | {{% notice info %}} 12 | Launching EKS and all the dependencies will take approximately 15 minutes 13 | {{% /notice %}} 14 | -------------------------------------------------------------------------------- /content/tabs-example/tabs/launcheks.md: -------------------------------------------------------------------------------- 1 | --- 2 | title: "Embedded tab content" 3 | disableToc: true 4 | hidden: true 5 | --- 6 | 7 | We start by initializing the Terraform state: 8 | ``` 9 | terraform init 10 | ``` 11 | 12 | We can now plan our deployment: 13 | ``` 14 | terraform plan -var 'cluster-name=eksworkshop-tf' -var 'desired-capacity=3' -out eksworkshop-tf 15 | ``` 16 | 17 | And if we want to apply that plan: 18 | ``` 19 | terraform apply "eksworkshop-tf" 20 | ``` 21 | {{% notice info %}} 22 | Applying the fresh terraform plan will take approximately 15 minutes 23 | {{% /notice %}} 24 | -------------------------------------------------------------------------------- /layouts/partials/favicon.html: -------------------------------------------------------------------------------- 1 | 2 | 3 | -------------------------------------------------------------------------------- /layouts/partials/menu-footer.html: -------------------------------------------------------------------------------- 1 | 2 | Privacy | Site Terms | © {{ now.Format "2006"}}, Amazon Web Services, Inc. or its affiliates. All rights reserved. 3 | 4 | -------------------------------------------------------------------------------- /layouts/partials/speakerdeck.html: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /layouts/shortcodes/cf-download.html: -------------------------------------------------------------------------------- 1 | 4 | 5 | Download 6 | 7 | -------------------------------------------------------------------------------- /layouts/shortcodes/cf-launch.html: -------------------------------------------------------------------------------- 1 | 4 | 5 | Launch 6 | 7 | -------------------------------------------------------------------------------- /layouts/shortcodes/github.html: -------------------------------------------------------------------------------- 1 | {{ .Get 0 }} 2 | -------------------------------------------------------------------------------- /layouts/shortcodes/mermaid.html: -------------------------------------------------------------------------------- 1 |
{{ safeHTML .Inner }}
2 | -------------------------------------------------------------------------------- /layouts/shortcodes/output.html: -------------------------------------------------------------------------------- 1 |
{{ .Inner | htmlUnescape }}
2 | -------------------------------------------------------------------------------- /layouts/shortcodes/year.html: -------------------------------------------------------------------------------- 1 | {{ .Page.Now.Year }} 2 | 3 | -------------------------------------------------------------------------------- /static/640px-Amazon_Web_Services_Logo.svg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/eks-workshop/2f9d29ed3f82ed6b083649e975a0e574fb8a4058/static/640px-Amazon_Web_Services_Logo.svg.png -------------------------------------------------------------------------------- /static/icons/apple-touch-icon-114x114.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/eks-workshop/2f9d29ed3f82ed6b083649e975a0e574fb8a4058/static/icons/apple-touch-icon-114x114.png -------------------------------------------------------------------------------- /static/icons/apple-touch-icon-120x120.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/eks-workshop/2f9d29ed3f82ed6b083649e975a0e574fb8a4058/static/icons/apple-touch-icon-120x120.png -------------------------------------------------------------------------------- /static/icons/apple-touch-icon-144x144.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/eks-workshop/2f9d29ed3f82ed6b083649e975a0e574fb8a4058/static/icons/apple-touch-icon-144x144.png -------------------------------------------------------------------------------- /static/icons/apple-touch-icon-152x152.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/eks-workshop/2f9d29ed3f82ed6b083649e975a0e574fb8a4058/static/icons/apple-touch-icon-152x152.png -------------------------------------------------------------------------------- /static/icons/apple-touch-icon-57x57.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/eks-workshop/2f9d29ed3f82ed6b083649e975a0e574fb8a4058/static/icons/apple-touch-icon-57x57.png -------------------------------------------------------------------------------- /static/icons/apple-touch-icon-60x60.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/eks-workshop/2f9d29ed3f82ed6b083649e975a0e574fb8a4058/static/icons/apple-touch-icon-60x60.png -------------------------------------------------------------------------------- /static/icons/apple-touch-icon-72x72.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/eks-workshop/2f9d29ed3f82ed6b083649e975a0e574fb8a4058/static/icons/apple-touch-icon-72x72.png -------------------------------------------------------------------------------- /static/icons/apple-touch-icon-76x76.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/eks-workshop/2f9d29ed3f82ed6b083649e975a0e574fb8a4058/static/icons/apple-touch-icon-76x76.png -------------------------------------------------------------------------------- /static/icons/favicon-128.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/eks-workshop/2f9d29ed3f82ed6b083649e975a0e574fb8a4058/static/icons/favicon-128.png -------------------------------------------------------------------------------- /static/icons/favicon-16x16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/eks-workshop/2f9d29ed3f82ed6b083649e975a0e574fb8a4058/static/icons/favicon-16x16.png -------------------------------------------------------------------------------- /static/icons/favicon-196x196.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/eks-workshop/2f9d29ed3f82ed6b083649e975a0e574fb8a4058/static/icons/favicon-196x196.png -------------------------------------------------------------------------------- /static/icons/favicon-32x32.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/eks-workshop/2f9d29ed3f82ed6b083649e975a0e574fb8a4058/static/icons/favicon-32x32.png -------------------------------------------------------------------------------- /static/icons/favicon-96x96.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/eks-workshop/2f9d29ed3f82ed6b083649e975a0e574fb8a4058/static/icons/favicon-96x96.png -------------------------------------------------------------------------------- /static/icons/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/eks-workshop/2f9d29ed3f82ed6b083649e975a0e574fb8a4058/static/icons/favicon.ico -------------------------------------------------------------------------------- /static/icons/mstile-144x144.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/eks-workshop/2f9d29ed3f82ed6b083649e975a0e574fb8a4058/static/icons/mstile-144x144.png -------------------------------------------------------------------------------- /static/icons/mstile-150x150.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/eks-workshop/2f9d29ed3f82ed6b083649e975a0e574fb8a4058/static/icons/mstile-150x150.png -------------------------------------------------------------------------------- /static/icons/mstile-310x150.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/eks-workshop/2f9d29ed3f82ed6b083649e975a0e574fb8a4058/static/icons/mstile-310x150.png -------------------------------------------------------------------------------- /static/icons/mstile-310x310.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/eks-workshop/2f9d29ed3f82ed6b083649e975a0e574fb8a4058/static/icons/mstile-310x310.png -------------------------------------------------------------------------------- /static/icons/mstile-70x70.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/eks-workshop/2f9d29ed3f82ed6b083649e975a0e574fb8a4058/static/icons/mstile-70x70.png -------------------------------------------------------------------------------- /static/images/3-service-animated.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/eks-workshop/2f9d29ed3f82ed6b083649e975a0e574fb8a4058/static/images/3-service-animated.gif -------------------------------------------------------------------------------- /static/images/Calico-enterprise-logo-1000px.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/eks-workshop/2f9d29ed3f82ed6b083649e975a0e574fb8a4058/static/images/Calico-enterprise-logo-1000px.png -------------------------------------------------------------------------------- /static/images/ContainerInsights1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/eks-workshop/2f9d29ed3f82ed6b083649e975a0e574fb8a4058/static/images/ContainerInsights1.png -------------------------------------------------------------------------------- /static/images/ContainerInsights10.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/eks-workshop/2f9d29ed3f82ed6b083649e975a0e574fb8a4058/static/images/ContainerInsights10.png -------------------------------------------------------------------------------- /static/images/ContainerInsights11.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/eks-workshop/2f9d29ed3f82ed6b083649e975a0e574fb8a4058/static/images/ContainerInsights11.png -------------------------------------------------------------------------------- /static/images/ContainerInsights12.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/eks-workshop/2f9d29ed3f82ed6b083649e975a0e574fb8a4058/static/images/ContainerInsights12.png -------------------------------------------------------------------------------- /static/images/ContainerInsights13.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/eks-workshop/2f9d29ed3f82ed6b083649e975a0e574fb8a4058/static/images/ContainerInsights13.png -------------------------------------------------------------------------------- /static/images/ContainerInsights14.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/eks-workshop/2f9d29ed3f82ed6b083649e975a0e574fb8a4058/static/images/ContainerInsights14.png -------------------------------------------------------------------------------- /static/images/ContainerInsights15.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/eks-workshop/2f9d29ed3f82ed6b083649e975a0e574fb8a4058/static/images/ContainerInsights15.png -------------------------------------------------------------------------------- /static/images/ContainerInsights16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/eks-workshop/2f9d29ed3f82ed6b083649e975a0e574fb8a4058/static/images/ContainerInsights16.png -------------------------------------------------------------------------------- /static/images/ContainerInsights17.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/eks-workshop/2f9d29ed3f82ed6b083649e975a0e574fb8a4058/static/images/ContainerInsights17.png -------------------------------------------------------------------------------- /static/images/ContainerInsights18.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/eks-workshop/2f9d29ed3f82ed6b083649e975a0e574fb8a4058/static/images/ContainerInsights18.png -------------------------------------------------------------------------------- /static/images/ContainerInsights2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/eks-workshop/2f9d29ed3f82ed6b083649e975a0e574fb8a4058/static/images/ContainerInsights2.png -------------------------------------------------------------------------------- /static/images/ContainerInsights3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/eks-workshop/2f9d29ed3f82ed6b083649e975a0e574fb8a4058/static/images/ContainerInsights3.png -------------------------------------------------------------------------------- /static/images/ContainerInsights5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/eks-workshop/2f9d29ed3f82ed6b083649e975a0e574fb8a4058/static/images/ContainerInsights5.png -------------------------------------------------------------------------------- /static/images/ContainerInsights6.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/eks-workshop/2f9d29ed3f82ed6b083649e975a0e574fb8a4058/static/images/ContainerInsights6.png -------------------------------------------------------------------------------- /static/images/ContainerInsights7.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/eks-workshop/2f9d29ed3f82ed6b083649e975a0e574fb8a4058/static/images/ContainerInsights7.png -------------------------------------------------------------------------------- /static/images/ContainerInsights8.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/eks-workshop/2f9d29ed3f82ed6b083649e975a0e574fb8a4058/static/images/ContainerInsights8.png -------------------------------------------------------------------------------- /static/images/ContainerInsights9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/eks-workshop/2f9d29ed3f82ed6b083649e975a0e574fb8a4058/static/images/ContainerInsights9.png -------------------------------------------------------------------------------- /static/images/Project-Calico-logo-1000px.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/eks-workshop/2f9d29ed3f82ed6b083649e975a0e574fb8a4058/static/images/Project-Calico-logo-1000px.png -------------------------------------------------------------------------------- /static/images/allow-egress-twilio.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/eks-workshop/2f9d29ed3f82ed6b083649e975a0e574fb8a4058/static/images/allow-egress-twilio.png -------------------------------------------------------------------------------- /static/images/amg/amg1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/eks-workshop/2f9d29ed3f82ed6b083649e975a0e574fb8a4058/static/images/amg/amg1.png -------------------------------------------------------------------------------- /static/images/amg/amg10.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/eks-workshop/2f9d29ed3f82ed6b083649e975a0e574fb8a4058/static/images/amg/amg10.png -------------------------------------------------------------------------------- /static/images/amg/amg11.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/eks-workshop/2f9d29ed3f82ed6b083649e975a0e574fb8a4058/static/images/amg/amg11.png -------------------------------------------------------------------------------- /static/images/amg/amg12.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/eks-workshop/2f9d29ed3f82ed6b083649e975a0e574fb8a4058/static/images/amg/amg12.png -------------------------------------------------------------------------------- /static/images/amg/amg2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/eks-workshop/2f9d29ed3f82ed6b083649e975a0e574fb8a4058/static/images/amg/amg2.png -------------------------------------------------------------------------------- /static/images/amg/amg3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/eks-workshop/2f9d29ed3f82ed6b083649e975a0e574fb8a4058/static/images/amg/amg3.png -------------------------------------------------------------------------------- /static/images/amg/amg4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/eks-workshop/2f9d29ed3f82ed6b083649e975a0e574fb8a4058/static/images/amg/amg4.png -------------------------------------------------------------------------------- /static/images/amg/amg5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/eks-workshop/2f9d29ed3f82ed6b083649e975a0e574fb8a4058/static/images/amg/amg5.png -------------------------------------------------------------------------------- /static/images/amg/amg6.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/eks-workshop/2f9d29ed3f82ed6b083649e975a0e574fb8a4058/static/images/amg/amg6.png -------------------------------------------------------------------------------- /static/images/amg/amg7.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/eks-workshop/2f9d29ed3f82ed6b083649e975a0e574fb8a4058/static/images/amg/amg7.png -------------------------------------------------------------------------------- /static/images/amg/amg8.PNG: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/eks-workshop/2f9d29ed3f82ed6b083649e975a0e574fb8a4058/static/images/amg/amg8.PNG -------------------------------------------------------------------------------- /static/images/amg/amg8.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/eks-workshop/2f9d29ed3f82ed6b083649e975a0e574fb8a4058/static/images/amg/amg8.png -------------------------------------------------------------------------------- /static/images/amg/amg9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/eks-workshop/2f9d29ed3f82ed6b083649e975a0e574fb8a4058/static/images/amg/amg9.png -------------------------------------------------------------------------------- /static/images/amg/amp13.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/eks-workshop/2f9d29ed3f82ed6b083649e975a0e574fb8a4058/static/images/amg/amp13.png -------------------------------------------------------------------------------- /static/images/amp/amp1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/eks-workshop/2f9d29ed3f82ed6b083649e975a0e574fb8a4058/static/images/amp/amp1.png -------------------------------------------------------------------------------- /static/images/amp/amp3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/eks-workshop/2f9d29ed3f82ed6b083649e975a0e574fb8a4058/static/images/amp/amp3.png -------------------------------------------------------------------------------- /static/images/amp/amp4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/eks-workshop/2f9d29ed3f82ed6b083649e975a0e574fb8a4058/static/images/amp/amp4.png -------------------------------------------------------------------------------- /static/images/app_mesh_fargate/appmeshconfig.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/eks-workshop/2f9d29ed3f82ed6b083649e975a0e574fb8a4058/static/images/app_mesh_fargate/appmeshconfig.png -------------------------------------------------------------------------------- /static/images/app_mesh_fargate/appmeshpolicy.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/eks-workshop/2f9d29ed3f82ed6b083649e975a0e574fb8a4058/static/images/app_mesh_fargate/appmeshpolicy.png -------------------------------------------------------------------------------- /static/images/app_mesh_fargate/appmeshv1-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/eks-workshop/2f9d29ed3f82ed6b083649e975a0e574fb8a4058/static/images/app_mesh_fargate/appmeshv1-1.png -------------------------------------------------------------------------------- /static/images/app_mesh_fargate/architecture-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/eks-workshop/2f9d29ed3f82ed6b083649e975a0e574fb8a4058/static/images/app_mesh_fargate/architecture-1.png -------------------------------------------------------------------------------- /static/images/app_mesh_fargate/canary-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/eks-workshop/2f9d29ed3f82ed6b083649e975a0e574fb8a4058/static/images/app_mesh_fargate/canary-1.png -------------------------------------------------------------------------------- /static/images/app_mesh_fargate/canary1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/eks-workshop/2f9d29ed3f82ed6b083649e975a0e574fb8a4058/static/images/app_mesh_fargate/canary1.png -------------------------------------------------------------------------------- /static/images/app_mesh_fargate/canary2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/eks-workshop/2f9d29ed3f82ed6b083649e975a0e574fb8a4058/static/images/app_mesh_fargate/canary2.png -------------------------------------------------------------------------------- /static/images/app_mesh_fargate/canary50-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/eks-workshop/2f9d29ed3f82ed6b083649e975a0e574fb8a4058/static/images/app_mesh_fargate/canary50-1.png -------------------------------------------------------------------------------- /static/images/app_mesh_fargate/catalog.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/eks-workshop/2f9d29ed3f82ed6b083649e975a0e574fb8a4058/static/images/app_mesh_fargate/catalog.png -------------------------------------------------------------------------------- /static/images/app_mesh_fargate/catalogmap.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/eks-workshop/2f9d29ed3f82ed6b083649e975a0e574fb8a4058/static/images/app_mesh_fargate/catalogmap.png -------------------------------------------------------------------------------- /static/images/app_mesh_fargate/catalogtrace.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/eks-workshop/2f9d29ed3f82ed6b083649e975a0e574fb8a4058/static/images/app_mesh_fargate/catalogtrace.png -------------------------------------------------------------------------------- /static/images/app_mesh_fargate/cloudwatchd.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/eks-workshop/2f9d29ed3f82ed6b083649e975a0e574fb8a4058/static/images/app_mesh_fargate/cloudwatchd.png -------------------------------------------------------------------------------- /static/images/app_mesh_fargate/cloudwatchpolicy.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/eks-workshop/2f9d29ed3f82ed6b083649e975a0e574fb8a4058/static/images/app_mesh_fargate/cloudwatchpolicy.png -------------------------------------------------------------------------------- /static/images/app_mesh_fargate/cluster_insight1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/eks-workshop/2f9d29ed3f82ed6b083649e975a0e574fb8a4058/static/images/app_mesh_fargate/cluster_insight1.png -------------------------------------------------------------------------------- /static/images/app_mesh_fargate/consolecontrol.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/eks-workshop/2f9d29ed3f82ed6b083649e975a0e574fb8a4058/static/images/app_mesh_fargate/consolecontrol.png -------------------------------------------------------------------------------- /static/images/app_mesh_fargate/controlplanelog.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/eks-workshop/2f9d29ed3f82ed6b083649e975a0e574fb8a4058/static/images/app_mesh_fargate/controlplanelog.png -------------------------------------------------------------------------------- /static/images/app_mesh_fargate/ecr.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/eks-workshop/2f9d29ed3f82ed6b083649e975a0e574fb8a4058/static/images/app_mesh_fargate/ecr.png -------------------------------------------------------------------------------- /static/images/app_mesh_fargate/eks-nodegroup1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/eks-workshop/2f9d29ed3f82ed6b083649e975a0e574fb8a4058/static/images/app_mesh_fargate/eks-nodegroup1.png -------------------------------------------------------------------------------- /static/images/app_mesh_fargate/eks-worker.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/eks-workshop/2f9d29ed3f82ed6b083649e975a0e574fb8a4058/static/images/app_mesh_fargate/eks-worker.png -------------------------------------------------------------------------------- /static/images/app_mesh_fargate/fargate.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/eks-workshop/2f9d29ed3f82ed6b083649e975a0e574fb8a4058/static/images/app_mesh_fargate/fargate.png -------------------------------------------------------------------------------- /static/images/app_mesh_fargate/fargate_log.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/eks-workshop/2f9d29ed3f82ed6b083649e975a0e574fb8a4058/static/images/app_mesh_fargate/fargate_log.png -------------------------------------------------------------------------------- /static/images/app_mesh_fargate/fargatepodrole.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/eks-workshop/2f9d29ed3f82ed6b083649e975a0e574fb8a4058/static/images/app_mesh_fargate/fargatepodrole.png -------------------------------------------------------------------------------- /static/images/app_mesh_fargate/fargaterole.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/eks-workshop/2f9d29ed3f82ed6b083649e975a0e574fb8a4058/static/images/app_mesh_fargate/fargaterole.png -------------------------------------------------------------------------------- /static/images/app_mesh_fargate/fluentbit.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/eks-workshop/2f9d29ed3f82ed6b083649e975a0e574fb8a4058/static/images/app_mesh_fargate/fluentbit.png -------------------------------------------------------------------------------- /static/images/app_mesh_fargate/instancerole.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/eks-workshop/2f9d29ed3f82ed6b083649e975a0e574fb8a4058/static/images/app_mesh_fargate/instancerole.png -------------------------------------------------------------------------------- /static/images/app_mesh_fargate/lbfrontend-2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/eks-workshop/2f9d29ed3f82ed6b083649e975a0e574fb8a4058/static/images/app_mesh_fargate/lbfrontend-2.png -------------------------------------------------------------------------------- /static/images/app_mesh_fargate/log1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/eks-workshop/2f9d29ed3f82ed6b083649e975a0e574fb8a4058/static/images/app_mesh_fargate/log1.png -------------------------------------------------------------------------------- /static/images/app_mesh_fargate/map.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/eks-workshop/2f9d29ed3f82ed6b083649e975a0e574fb8a4058/static/images/app_mesh_fargate/map.png -------------------------------------------------------------------------------- /static/images/app_mesh_fargate/mesh-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/eks-workshop/2f9d29ed3f82ed6b083649e975a0e574fb8a4058/static/images/app_mesh_fargate/mesh-1.png -------------------------------------------------------------------------------- /static/images/app_mesh_fargate/mesh-2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/eks-workshop/2f9d29ed3f82ed6b083649e975a0e574fb8a4058/static/images/app_mesh_fargate/mesh-2.png -------------------------------------------------------------------------------- /static/images/app_mesh_fargate/mesh-3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/eks-workshop/2f9d29ed3f82ed6b083649e975a0e574fb8a4058/static/images/app_mesh_fargate/mesh-3.png -------------------------------------------------------------------------------- /static/images/app_mesh_fargate/mesh_console.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/eks-workshop/2f9d29ed3f82ed6b083649e975a0e574fb8a4058/static/images/app_mesh_fargate/mesh_console.png -------------------------------------------------------------------------------- /static/images/app_mesh_fargate/meshify-vg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/eks-workshop/2f9d29ed3f82ed6b083649e975a0e574fb8a4058/static/images/app_mesh_fargate/meshify-vg.png -------------------------------------------------------------------------------- /static/images/app_mesh_fargate/meshify.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/eks-workshop/2f9d29ed3f82ed6b083649e975a0e574fb8a4058/static/images/app_mesh_fargate/meshify.png -------------------------------------------------------------------------------- /static/images/app_mesh_fargate/meshify0.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/eks-workshop/2f9d29ed3f82ed6b083649e975a0e574fb8a4058/static/images/app_mesh_fargate/meshify0.png -------------------------------------------------------------------------------- /static/images/app_mesh_fargate/meshify1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/eks-workshop/2f9d29ed3f82ed6b083649e975a0e574fb8a4058/static/images/app_mesh_fargate/meshify1.png -------------------------------------------------------------------------------- /static/images/app_mesh_fargate/meshify3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/eks-workshop/2f9d29ed3f82ed6b083649e975a0e574fb8a4058/static/images/app_mesh_fargate/meshify3.png -------------------------------------------------------------------------------- /static/images/app_mesh_fargate/microservices.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/eks-workshop/2f9d29ed3f82ed6b083649e975a0e574fb8a4058/static/images/app_mesh_fargate/microservices.png -------------------------------------------------------------------------------- /static/images/app_mesh_fargate/no-appmesh-arch.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/eks-workshop/2f9d29ed3f82ed6b083649e975a0e574fb8a4058/static/images/app_mesh_fargate/no-appmesh-arch.png -------------------------------------------------------------------------------- /static/images/app_mesh_fargate/node_insight1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/eks-workshop/2f9d29ed3f82ed6b083649e975a0e574fb8a4058/static/images/app_mesh_fargate/node_insight1.png -------------------------------------------------------------------------------- /static/images/app_mesh_fargate/pcapp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/eks-workshop/2f9d29ed3f82ed6b083649e975a0e574fb8a4058/static/images/app_mesh_fargate/pcapp.png -------------------------------------------------------------------------------- /static/images/app_mesh_fargate/policies.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/eks-workshop/2f9d29ed3f82ed6b083649e975a0e574fb8a4058/static/images/app_mesh_fargate/policies.png -------------------------------------------------------------------------------- /static/images/app_mesh_fargate/product-v1-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/eks-workshop/2f9d29ed3f82ed6b083649e975a0e574fb8a4058/static/images/app_mesh_fargate/product-v1-1.png -------------------------------------------------------------------------------- /static/images/app_mesh_fargate/product-v2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/eks-workshop/2f9d29ed3f82ed6b083649e975a0e574fb8a4058/static/images/app_mesh_fargate/product-v2.png -------------------------------------------------------------------------------- /static/images/app_mesh_fargate/prometheus-logs.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/eks-workshop/2f9d29ed3f82ed6b083649e975a0e574fb8a4058/static/images/app_mesh_fargate/prometheus-logs.png -------------------------------------------------------------------------------- /static/images/app_mesh_fargate/prometheus-metrics.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/eks-workshop/2f9d29ed3f82ed6b083649e975a0e574fb8a4058/static/images/app_mesh_fargate/prometheus-metrics.png -------------------------------------------------------------------------------- /static/images/app_mesh_fargate/prometheus-reports.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/eks-workshop/2f9d29ed3f82ed6b083649e975a0e574fb8a4058/static/images/app_mesh_fargate/prometheus-reports.png -------------------------------------------------------------------------------- /static/images/app_mesh_fargate/prometheus-reports2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/eks-workshop/2f9d29ed3f82ed6b083649e975a0e574fb8a4058/static/images/app_mesh_fargate/prometheus-reports2.png -------------------------------------------------------------------------------- /static/images/app_mesh_fargate/proxy.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/eks-workshop/2f9d29ed3f82ed6b083649e975a0e574fb8a4058/static/images/app_mesh_fargate/proxy.png -------------------------------------------------------------------------------- /static/images/app_mesh_fargate/sa-role.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/eks-workshop/2f9d29ed3f82ed6b083649e975a0e574fb8a4058/static/images/app_mesh_fargate/sa-role.png -------------------------------------------------------------------------------- /static/images/app_mesh_fargate/search1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/eks-workshop/2f9d29ed3f82ed6b083649e975a0e574fb8a4058/static/images/app_mesh_fargate/search1.png -------------------------------------------------------------------------------- /static/images/app_mesh_fargate/tracef-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/eks-workshop/2f9d29ed3f82ed6b083649e975a0e574fb8a4058/static/images/app_mesh_fargate/tracef-1.png -------------------------------------------------------------------------------- /static/images/app_mesh_fargate/tracef-2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/eks-workshop/2f9d29ed3f82ed6b083649e975a0e574fb8a4058/static/images/app_mesh_fargate/tracef-2.png -------------------------------------------------------------------------------- /static/images/app_mesh_fargate/tracef-3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/eks-workshop/2f9d29ed3f82ed6b083649e975a0e574fb8a4058/static/images/app_mesh_fargate/tracef-3.png -------------------------------------------------------------------------------- /static/images/app_mesh_fargate/tracef.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/eks-workshop/2f9d29ed3f82ed6b083649e975a0e574fb8a4058/static/images/app_mesh_fargate/tracef.png -------------------------------------------------------------------------------- /static/images/app_mesh_fargate/tracep-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/eks-workshop/2f9d29ed3f82ed6b083649e975a0e574fb8a4058/static/images/app_mesh_fargate/tracep-1.png -------------------------------------------------------------------------------- /static/images/app_mesh_fargate/tracep-2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/eks-workshop/2f9d29ed3f82ed6b083649e975a0e574fb8a4058/static/images/app_mesh_fargate/tracep-2.png -------------------------------------------------------------------------------- /static/images/app_mesh_fargate/tracep-3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/eks-workshop/2f9d29ed3f82ed6b083649e975a0e574fb8a4058/static/images/app_mesh_fargate/tracep-3.png -------------------------------------------------------------------------------- /static/images/app_mesh_fargate/tracep-4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/eks-workshop/2f9d29ed3f82ed6b083649e975a0e574fb8a4058/static/images/app_mesh_fargate/tracep-4.png -------------------------------------------------------------------------------- /static/images/app_mesh_fargate/ui1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/eks-workshop/2f9d29ed3f82ed6b083649e975a0e574fb8a4058/static/images/app_mesh_fargate/ui1.png -------------------------------------------------------------------------------- /static/images/app_mesh_fargate/ui2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/eks-workshop/2f9d29ed3f82ed6b083649e975a0e574fb8a4058/static/images/app_mesh_fargate/ui2.png -------------------------------------------------------------------------------- /static/images/app_mesh_fargate/ui3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/eks-workshop/2f9d29ed3f82ed6b083649e975a0e574fb8a4058/static/images/app_mesh_fargate/ui3.png -------------------------------------------------------------------------------- /static/images/app_mesh_fargate/v1map.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/eks-workshop/2f9d29ed3f82ed6b083649e975a0e574fb8a4058/static/images/app_mesh_fargate/v1map.png -------------------------------------------------------------------------------- /static/images/app_mesh_fargate/v1trace.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/eks-workshop/2f9d29ed3f82ed6b083649e975a0e574fb8a4058/static/images/app_mesh_fargate/v1trace.png -------------------------------------------------------------------------------- /static/images/app_mesh_fargate/v2map.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/eks-workshop/2f9d29ed3f82ed6b083649e975a0e574fb8a4058/static/images/app_mesh_fargate/v2map.png -------------------------------------------------------------------------------- /static/images/app_mesh_fargate/v2trace.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/eks-workshop/2f9d29ed3f82ed6b083649e975a0e574fb8a4058/static/images/app_mesh_fargate/v2trace.png -------------------------------------------------------------------------------- /static/images/app_mesh_fargate/vg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/eks-workshop/2f9d29ed3f82ed6b083649e975a0e574fb8a4058/static/images/app_mesh_fargate/vg.png -------------------------------------------------------------------------------- /static/images/app_mesh_fargate/virtualgateway.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/eks-workshop/2f9d29ed3f82ed6b083649e975a0e574fb8a4058/static/images/app_mesh_fargate/virtualgateway.png -------------------------------------------------------------------------------- /static/images/app_mesh_fargate/xraypolicy1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/eks-workshop/2f9d29ed3f82ed6b083649e975a0e574fb8a4058/static/images/app_mesh_fargate/xraypolicy1.png -------------------------------------------------------------------------------- /static/images/app_mesh_flagger/flagger.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/eks-workshop/2f9d29ed3f82ed6b083649e975a0e574fb8a4058/static/images/app_mesh_flagger/flagger.png -------------------------------------------------------------------------------- /static/images/app_mesh_flagger/lb.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/eks-workshop/2f9d29ed3f82ed6b083649e975a0e574fb8a4058/static/images/app_mesh_flagger/lb.png -------------------------------------------------------------------------------- /static/images/app_mesh_flagger/mapview.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/eks-workshop/2f9d29ed3f82ed6b083649e975a0e574fb8a4058/static/images/app_mesh_flagger/mapview.png -------------------------------------------------------------------------------- /static/images/app_mesh_flagger/traceview.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/eks-workshop/2f9d29ed3f82ed6b083649e975a0e574fb8a4058/static/images/app_mesh_flagger/traceview.png -------------------------------------------------------------------------------- /static/images/app_mesh_flagger/version1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/eks-workshop/2f9d29ed3f82ed6b083649e975a0e574fb8a4058/static/images/app_mesh_flagger/version1.png -------------------------------------------------------------------------------- /static/images/app_mesh_flagger/version2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/eks-workshop/2f9d29ed3f82ed6b083649e975a0e574fb8a4058/static/images/app_mesh_flagger/version2.png -------------------------------------------------------------------------------- /static/images/app_mesh_flagger/version3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/eks-workshop/2f9d29ed3f82ed6b083649e975a0e574fb8a4058/static/images/app_mesh_flagger/version3.png -------------------------------------------------------------------------------- /static/images/app_mesh_ga/101-side-car-proxy.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/eks-workshop/2f9d29ed3f82ed6b083649e975a0e574fb8a4058/static/images/app_mesh_ga/101-side-car-proxy.png -------------------------------------------------------------------------------- /static/images/app_mesh_ga/115-common-need.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/eks-workshop/2f9d29ed3f82ed6b083649e975a0e574fb8a4058/static/images/app_mesh_ga/115-common-need.png -------------------------------------------------------------------------------- /static/images/app_mesh_ga/125-v1-no-mesh.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/eks-workshop/2f9d29ed3f82ed6b083649e975a0e574fb8a4058/static/images/app_mesh_ga/125-v1-no-mesh.png -------------------------------------------------------------------------------- /static/images/app_mesh_ga/135-v1-mesh.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/eks-workshop/2f9d29ed3f82ed6b083649e975a0e574fb8a4058/static/images/app_mesh_ga/135-v1-mesh.png -------------------------------------------------------------------------------- /static/images/app_mesh_ga/140-v2-mesh.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/eks-workshop/2f9d29ed3f82ed6b083649e975a0e574fb8a4058/static/images/app_mesh_ga/140-v2-mesh.png -------------------------------------------------------------------------------- /static/images/app_mesh_ga/150-observable-and-shapable.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/eks-workshop/2f9d29ed3f82ed6b083649e975a0e574fb8a4058/static/images/app_mesh_ga/150-observable-and-shapable.png -------------------------------------------------------------------------------- /static/images/app_mesh_ga/155-v2-with-mesh-and-cp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/eks-workshop/2f9d29ed3f82ed6b083649e975a0e574fb8a4058/static/images/app_mesh_ga/155-v2-with-mesh-and-cp.png -------------------------------------------------------------------------------- /static/images/app_mesh_ga/djapp-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/eks-workshop/2f9d29ed3f82ed6b083649e975a0e574fb8a4058/static/images/app_mesh_ga/djapp-1.png -------------------------------------------------------------------------------- /static/images/app_mesh_ga/djapp-2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/eks-workshop/2f9d29ed3f82ed6b083649e975a0e574fb8a4058/static/images/app_mesh_ga/djapp-2.png -------------------------------------------------------------------------------- /static/images/app_mesh_old/appmesh_overview.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/eks-workshop/2f9d29ed3f82ed6b083649e975a0e574fb8a4058/static/images/app_mesh_old/appmesh_overview.png -------------------------------------------------------------------------------- /static/images/app_mesh_old/routers_and_routes.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/eks-workshop/2f9d29ed3f82ed6b083649e975a0e574fb8a4058/static/images/app_mesh_old/routers_and_routes.png -------------------------------------------------------------------------------- /static/images/argo-workflow/argo-dashboard.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/eks-workshop/2f9d29ed3f82ed6b083649e975a0e574fb8a4058/static/images/argo-workflow/argo-dashboard.png -------------------------------------------------------------------------------- /static/images/argo-workflow/argo-hotel-job.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/eks-workshop/2f9d29ed3f82ed6b083649e975a0e574fb8a4058/static/images/argo-workflow/argo-hotel-job.png -------------------------------------------------------------------------------- /static/images/argo-workflow/argo-logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/eks-workshop/2f9d29ed3f82ed6b083649e975a0e574fb8a4058/static/images/argo-workflow/argo-logo.png -------------------------------------------------------------------------------- /static/images/argo-workflow/argo-logs.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/eks-workshop/2f9d29ed3f82ed6b083649e975a0e574fb8a4058/static/images/argo-workflow/argo-logs.png -------------------------------------------------------------------------------- /static/images/argo-workflow/argo-workflow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/eks-workshop/2f9d29ed3f82ed6b083649e975a0e574fb8a4058/static/images/argo-workflow/argo-workflow.png -------------------------------------------------------------------------------- /static/images/argocd/app_outofsync.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/eks-workshop/2f9d29ed3f82ed6b083649e975a0e574fb8a4058/static/images/argocd/app_outofsync.png -------------------------------------------------------------------------------- /static/images/argocd/app_sync.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/eks-workshop/2f9d29ed3f82ed6b083649e975a0e574fb8a4058/static/images/argocd/app_sync.png -------------------------------------------------------------------------------- /static/images/argocd/app_synced.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/eks-workshop/2f9d29ed3f82ed6b083649e975a0e574fb8a4058/static/images/argocd/app_synced.png -------------------------------------------------------------------------------- /static/images/argocd/argocd_architecture.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/eks-workshop/2f9d29ed3f82ed6b083649e975a0e574fb8a4058/static/images/argocd/argocd_architecture.png -------------------------------------------------------------------------------- /static/images/argocd/argocd_ui.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/eks-workshop/2f9d29ed3f82ed6b083649e975a0e574fb8a4058/static/images/argocd/argocd_ui.jpg -------------------------------------------------------------------------------- /static/images/argocd/edit_deployment.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/eks-workshop/2f9d29ed3f82ed6b083649e975a0e574fb8a4058/static/images/argocd/edit_deployment.png -------------------------------------------------------------------------------- /static/images/argocd/fork_app_repo.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/eks-workshop/2f9d29ed3f82ed6b083649e975a0e574fb8a4058/static/images/argocd/fork_app_repo.jpg -------------------------------------------------------------------------------- /static/images/argocd/fork_url.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/eks-workshop/2f9d29ed3f82ed6b083649e975a0e574fb8a4058/static/images/argocd/fork_url.jpg -------------------------------------------------------------------------------- /static/images/aws-operator-demo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/eks-workshop/2f9d29ed3f82ed6b083649e975a0e574fb8a4058/static/images/aws-operator-demo.png -------------------------------------------------------------------------------- /static/images/backupandrestore/blogpost.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/eks-workshop/2f9d29ed3f82ed6b083649e975a0e574fb8a4058/static/images/backupandrestore/blogpost.jpg -------------------------------------------------------------------------------- /static/images/backupandrestore/velero-bucket.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/eks-workshop/2f9d29ed3f82ed6b083649e975a0e574fb8a4058/static/images/backupandrestore/velero-bucket.jpg -------------------------------------------------------------------------------- /static/images/backupandrestore/velero.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/eks-workshop/2f9d29ed3f82ed6b083649e975a0e574fb8a4058/static/images/backupandrestore/velero.png -------------------------------------------------------------------------------- /static/images/backupandrestore/wordpress-admin.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/eks-workshop/2f9d29ed3f82ed6b083649e975a0e574fb8a4058/static/images/backupandrestore/wordpress-admin.jpg -------------------------------------------------------------------------------- /static/images/backupandrestore/wordpress.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/eks-workshop/2f9d29ed3f82ed6b083649e975a0e574fb8a4058/static/images/backupandrestore/wordpress.jpg -------------------------------------------------------------------------------- /static/images/c9attachrole.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/eks-workshop/2f9d29ed3f82ed6b083649e975a0e574fb8a4058/static/images/c9attachrole.png -------------------------------------------------------------------------------- /static/images/c9disableiam.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/eks-workshop/2f9d29ed3f82ed6b083649e975a0e574fb8a4058/static/images/c9disableiam.png -------------------------------------------------------------------------------- /static/images/c9instancerole.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/eks-workshop/2f9d29ed3f82ed6b083649e975a0e574fb8a4058/static/images/c9instancerole.png -------------------------------------------------------------------------------- /static/images/calico-chapter-image.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/eks-workshop/2f9d29ed3f82ed6b083649e975a0e574fb8a4058/static/images/calico-chapter-image.png -------------------------------------------------------------------------------- /static/images/calico-client-f-b-access.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/eks-workshop/2f9d29ed3f82ed6b083649e975a0e574fb8a4058/static/images/calico-client-f-b-access.png -------------------------------------------------------------------------------- /static/images/calico-full-access.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/eks-workshop/2f9d29ed3f82ed6b083649e975a0e574fb8a4058/static/images/calico-full-access.png -------------------------------------------------------------------------------- /static/images/calico-mgmtui-access.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/eks-workshop/2f9d29ed3f82ed6b083649e975a0e574fb8a4058/static/images/calico-mgmtui-access.png -------------------------------------------------------------------------------- /static/images/cloud9-editor.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/eks-workshop/2f9d29ed3f82ed6b083649e975a0e574fb8a4058/static/images/cloud9-editor.png -------------------------------------------------------------------------------- /static/images/cloudtrail-2022UI-proof-1024.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/eks-workshop/2f9d29ed3f82ed6b083649e975a0e574fb8a4058/static/images/cloudtrail-2022UI-proof-1024.png -------------------------------------------------------------------------------- /static/images/codepipeline/cloudformation_delete.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/eks-workshop/2f9d29ed3f82ed6b083649e975a0e574fb8a4058/static/images/codepipeline/cloudformation_delete.png -------------------------------------------------------------------------------- /static/images/codepipeline/cloudformation_stack.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/eks-workshop/2f9d29ed3f82ed6b083649e975a0e574fb8a4058/static/images/codepipeline/cloudformation_stack.png -------------------------------------------------------------------------------- /static/images/codepipeline/cloudformation_stack_creating.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/eks-workshop/2f9d29ed3f82ed6b083649e975a0e574fb8a4058/static/images/codepipeline/cloudformation_stack_creating.png -------------------------------------------------------------------------------- /static/images/codepipeline/codepipeline_building.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/eks-workshop/2f9d29ed3f82ed6b083649e975a0e574fb8a4058/static/images/codepipeline/codepipeline_building.png -------------------------------------------------------------------------------- /static/images/codepipeline/codepipeline_details.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/eks-workshop/2f9d29ed3f82ed6b083649e975a0e574fb8a4058/static/images/codepipeline/codepipeline_details.png -------------------------------------------------------------------------------- /static/images/codepipeline/codepipeline_landing.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/eks-workshop/2f9d29ed3f82ed6b083649e975a0e574fb8a4058/static/images/codepipeline/codepipeline_landing.png -------------------------------------------------------------------------------- /static/images/codepipeline/ecr_delete.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/eks-workshop/2f9d29ed3f82ed6b083649e975a0e574fb8a4058/static/images/codepipeline/ecr_delete.png -------------------------------------------------------------------------------- /static/images/codepipeline/github_commit.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/eks-workshop/2f9d29ed3f82ed6b083649e975a0e574fb8a4058/static/images/codepipeline/github_commit.png -------------------------------------------------------------------------------- /static/images/codepipeline/github_copy_access.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/eks-workshop/2f9d29ed3f82ed6b083649e975a0e574fb8a4058/static/images/codepipeline/github_copy_access.png -------------------------------------------------------------------------------- /static/images/codepipeline/github_edit.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/eks-workshop/2f9d29ed3f82ed6b083649e975a0e574fb8a4058/static/images/codepipeline/github_edit.png -------------------------------------------------------------------------------- /static/images/codepipeline/github_fork.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/eks-workshop/2f9d29ed3f82ed6b083649e975a0e574fb8a4058/static/images/codepipeline/github_fork.png -------------------------------------------------------------------------------- /static/images/codepipeline/github_fork_example.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/eks-workshop/2f9d29ed3f82ed6b083649e975a0e574fb8a4058/static/images/codepipeline/github_fork_example.png -------------------------------------------------------------------------------- /static/images/codepipeline/github_modify.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/eks-workshop/2f9d29ed3f82ed6b083649e975a0e574fb8a4058/static/images/codepipeline/github_modify.png -------------------------------------------------------------------------------- /static/images/codepipeline/github_token_name.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/eks-workshop/2f9d29ed3f82ed6b083649e975a0e574fb8a4058/static/images/codepipeline/github_token_name.png -------------------------------------------------------------------------------- /static/images/codepipeline/s3_delete.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/eks-workshop/2f9d29ed3f82ed6b083649e975a0e574fb8a4058/static/images/codepipeline/s3_delete.png -------------------------------------------------------------------------------- /static/images/dashboard-connect.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/eks-workshop/2f9d29ed3f82ed6b083649e975a0e574fb8a4058/static/images/dashboard-connect.png -------------------------------------------------------------------------------- /static/images/dashboard.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/eks-workshop/2f9d29ed3f82ed6b083649e975a0e574fb8a4058/static/images/dashboard.png -------------------------------------------------------------------------------- /static/images/denied-traffic.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/eks-workshop/2f9d29ed3f82ed6b083649e975a0e574fb8a4058/static/images/denied-traffic.png -------------------------------------------------------------------------------- /static/images/deny-public-ips.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/eks-workshop/2f9d29ed3f82ed6b083649e975a0e574fb8a4058/static/images/deny-public-ips.png -------------------------------------------------------------------------------- /static/images/efs-provisioner/configmap.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/eks-workshop/2f9d29ed3f82ed6b083649e975a0e574fb8a4058/static/images/efs-provisioner/configmap.png -------------------------------------------------------------------------------- /static/images/efs-provisioner/deployment.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/eks-workshop/2f9d29ed3f82ed6b083649e975a0e574fb8a4058/static/images/efs-provisioner/deployment.png -------------------------------------------------------------------------------- /static/images/efs-provisioner/efs-dashboard.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/eks-workshop/2f9d29ed3f82ed6b083649e975a0e574fb8a4058/static/images/efs-provisioner/efs-dashboard.png -------------------------------------------------------------------------------- /static/images/efs-provisioner/provisioner.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/eks-workshop/2f9d29ed3f82ed6b083649e975a0e574fb8a4058/static/images/efs-provisioner/provisioner.png -------------------------------------------------------------------------------- /static/images/efs-provisioner/pvc.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/eks-workshop/2f9d29ed3f82ed6b083649e975a0e574fb8a4058/static/images/efs-provisioner/pvc.png -------------------------------------------------------------------------------- /static/images/efs-provisioner/storageclass.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/eks-workshop/2f9d29ed3f82ed6b083649e975a0e574fb8a4058/static/images/efs-provisioner/storageclass.png -------------------------------------------------------------------------------- /static/images/eks-secrets-flow-small-1-1024x621.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/eks-workshop/2f9d29ed3f82ed6b083649e975a0e574fb8a4058/static/images/eks-secrets-flow-small-1-1024x621.png -------------------------------------------------------------------------------- /static/images/ekscwci/alarmconfig.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/eks-workshop/2f9d29ed3f82ed6b083649e975a0e574fb8a4058/static/images/ekscwci/alarmconfig.png -------------------------------------------------------------------------------- /static/images/ekscwci/alertdescription.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/eks-workshop/2f9d29ed3f82ed6b083649e975a0e574fb8a4058/static/images/ekscwci/alertdescription.png -------------------------------------------------------------------------------- /static/images/ekscwci/configactions.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/eks-workshop/2f9d29ed3f82ed6b083649e975a0e574fb8a4058/static/images/ekscwci/configactions.png -------------------------------------------------------------------------------- /static/images/ekscwci/createalarm.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/eks-workshop/2f9d29ed3f82ed6b083649e975a0e574fb8a4058/static/images/ekscwci/createalarm.png -------------------------------------------------------------------------------- /static/images/ekscwci/insight_logs_01.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/eks-workshop/2f9d29ed3f82ed6b083649e975a0e574fb8a4058/static/images/ekscwci/insight_logs_01.png -------------------------------------------------------------------------------- /static/images/ekscwci/insight_logs_02.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/eks-workshop/2f9d29ed3f82ed6b083649e975a0e574fb8a4058/static/images/ekscwci/insight_logs_02.png -------------------------------------------------------------------------------- /static/images/ekscwci/insight_logs_03.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/eks-workshop/2f9d29ed3f82ed6b083649e975a0e574fb8a4058/static/images/ekscwci/insight_logs_03.png -------------------------------------------------------------------------------- /static/images/ekscwci/insights.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/eks-workshop/2f9d29ed3f82ed6b083649e975a0e574fb8a4058/static/images/ekscwci/insights.png -------------------------------------------------------------------------------- /static/images/ekscwci/metriceksservice.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/eks-workshop/2f9d29ed3f82ed6b083649e975a0e574fb8a4058/static/images/ekscwci/metriceksservice.png -------------------------------------------------------------------------------- /static/images/ekscwci/metricsoptions.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/eks-workshop/2f9d29ed3f82ed6b083649e975a0e574fb8a4058/static/images/ekscwci/metricsoptions.png -------------------------------------------------------------------------------- /static/images/ekscwci/metricsview.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/eks-workshop/2f9d29ed3f82ed6b083649e975a0e574fb8a4058/static/images/ekscwci/metricsview.png -------------------------------------------------------------------------------- /static/images/ekscwci/metrictime.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/eks-workshop/2f9d29ed3f82ed6b083649e975a0e574fb8a4058/static/images/ekscwci/metrictime.png -------------------------------------------------------------------------------- /static/images/ekscwci/sampleemail.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/eks-workshop/2f9d29ed3f82ed6b083649e975a0e574fb8a4058/static/images/ekscwci/sampleemail.png -------------------------------------------------------------------------------- /static/images/ekscwci/snsemail.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/eks-workshop/2f9d29ed3f82ed6b083649e975a0e574fb8a4058/static/images/ekscwci/snsemail.png -------------------------------------------------------------------------------- /static/images/ekscwci/switches.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/eks-workshop/2f9d29ed3f82ed6b083649e975a0e574fb8a4058/static/images/ekscwci/switches.gif -------------------------------------------------------------------------------- /static/images/ekscwci/viewinmetrics.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/eks-workshop/2f9d29ed3f82ed6b083649e975a0e574fb8a4058/static/images/ekscwci/viewinmetrics.png -------------------------------------------------------------------------------- /static/images/ekscwci/wordpresslogo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/eks-workshop/2f9d29ed3f82ed6b083649e975a0e574fb8a4058/static/images/ekscwci/wordpresslogo.png -------------------------------------------------------------------------------- /static/images/ekscwci/wp_hello_world.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/eks-workshop/2f9d29ed3f82ed6b083649e975a0e574fb8a4058/static/images/ekscwci/wp_hello_world.png -------------------------------------------------------------------------------- /static/images/ekscwci/wpdashboard.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/eks-workshop/2f9d29ed3f82ed6b083649e975a0e574fb8a4058/static/images/ekscwci/wpdashboard.png -------------------------------------------------------------------------------- /static/images/ekscwci/wploginpage.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/eks-workshop/2f9d29ed3f82ed6b083649e975a0e574fb8a4058/static/images/ekscwci/wploginpage.png -------------------------------------------------------------------------------- /static/images/emr-on-eks/cloudwatch-log-result.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/eks-workshop/2f9d29ed3f82ed6b083649e975a0e574fb8a4058/static/images/emr-on-eks/cloudwatch-log-result.png -------------------------------------------------------------------------------- /static/images/emr-on-eks/cloudwatch-logs1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/eks-workshop/2f9d29ed3f82ed6b083649e975a0e574fb8a4058/static/images/emr-on-eks/cloudwatch-logs1.png -------------------------------------------------------------------------------- /static/images/emr-on-eks/cloudwatch-stdout-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/eks-workshop/2f9d29ed3f82ed6b083649e975a0e574fb8a4058/static/images/emr-on-eks/cloudwatch-stdout-1.png -------------------------------------------------------------------------------- /static/images/emr-on-eks/dra-spark-log.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/eks-workshop/2f9d29ed3f82ed6b083649e975a0e574fb8a4058/static/images/emr-on-eks/dra-spark-log.png -------------------------------------------------------------------------------- /static/images/emr-on-eks/executor_log.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/eks-workshop/2f9d29ed3f82ed6b083649e975a0e574fb8a4058/static/images/emr-on-eks/executor_log.png -------------------------------------------------------------------------------- /static/images/emr-on-eks/fargate_autoscaling.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/eks-workshop/2f9d29ed3f82ed6b083649e975a0e574fb8a4058/static/images/emr-on-eks/fargate_autoscaling.png -------------------------------------------------------------------------------- /static/images/emr-on-eks/grafana_1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/eks-workshop/2f9d29ed3f82ed6b083649e975a0e574fb8a4058/static/images/emr-on-eks/grafana_1.png -------------------------------------------------------------------------------- /static/images/emr-on-eks/green-cab-nyc.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/eks-workshop/2f9d29ed3f82ed6b083649e975a0e574fb8a4058/static/images/emr-on-eks/green-cab-nyc.png -------------------------------------------------------------------------------- /static/images/emr-on-eks/job_hang.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/eks-workshop/2f9d29ed3f82ed6b083649e975a0e574fb8a4058/static/images/emr-on-eks/job_hang.png -------------------------------------------------------------------------------- /static/images/emr-on-eks/not_enough_vcpu.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/eks-workshop/2f9d29ed3f82ed6b083649e975a0e574fb8a4058/static/images/emr-on-eks/not_enough_vcpu.png -------------------------------------------------------------------------------- /static/images/emr-on-eks/s3logs.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/eks-workshop/2f9d29ed3f82ed6b083649e975a0e574fb8a4058/static/images/emr-on-eks/s3logs.png -------------------------------------------------------------------------------- /static/images/emr-on-eks/spark_history_1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/eks-workshop/2f9d29ed3f82ed6b083649e975a0e574fb8a4058/static/images/emr-on-eks/spark_history_1.png -------------------------------------------------------------------------------- /static/images/emr-on-eks/spark_history_2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/eks-workshop/2f9d29ed3f82ed6b083649e975a0e574fb8a4058/static/images/emr-on-eks/spark_history_2.png -------------------------------------------------------------------------------- /static/images/emr-on-eks/spark_history_3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/eks-workshop/2f9d29ed3f82ed6b083649e975a0e574fb8a4058/static/images/emr-on-eks/spark_history_3.png -------------------------------------------------------------------------------- /static/images/emr-on-eks/spark_log.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/eks-workshop/2f9d29ed3f82ed6b083649e975a0e574fb8a4058/static/images/emr-on-eks/spark_log.png -------------------------------------------------------------------------------- /static/images/emr-on-eks/submitter_terminate.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/eks-workshop/2f9d29ed3f82ed6b083649e975a0e574fb8a4058/static/images/emr-on-eks/submitter_terminate.png -------------------------------------------------------------------------------- /static/images/emr-on-eks/threadsleep_dra.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/eks-workshop/2f9d29ed3f82ed6b083649e975a0e574fb8a4058/static/images/emr-on-eks/threadsleep_dra.png -------------------------------------------------------------------------------- /static/images/emr-on-eks/virtual-cluster1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/eks-workshop/2f9d29ed3f82ed6b083649e975a0e574fb8a4058/static/images/emr-on-eks/virtual-cluster1.png -------------------------------------------------------------------------------- /static/images/emr-on-eks/virtual-cluster2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/eks-workshop/2f9d29ed3f82ed6b083649e975a0e574fb8a4058/static/images/emr-on-eks/virtual-cluster2.png -------------------------------------------------------------------------------- /static/images/emr-on-eks/yellow-cab-nyc.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/eks-workshop/2f9d29ed3f82ed6b083649e975a0e574fb8a4058/static/images/emr-on-eks/yellow-cab-nyc.png -------------------------------------------------------------------------------- /static/images/enable-metrics.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/eks-workshop/2f9d29ed3f82ed6b083649e975a0e574fb8a4058/static/images/enable-metrics.png -------------------------------------------------------------------------------- /static/images/event-engine-aws-console.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/eks-workshop/2f9d29ed3f82ed6b083649e975a0e574fb8a4058/static/images/event-engine-aws-console.png -------------------------------------------------------------------------------- /static/images/event-engine-dashboard.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/eks-workshop/2f9d29ed3f82ed6b083649e975a0e574fb8a4058/static/images/event-engine-dashboard.png -------------------------------------------------------------------------------- /static/images/event-engine-initial-screen.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/eks-workshop/2f9d29ed3f82ed6b083649e975a0e574fb8a4058/static/images/event-engine-initial-screen.png -------------------------------------------------------------------------------- /static/images/expose-service/ingress.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/eks-workshop/2f9d29ed3f82ed6b083649e975a0e574fb8a4058/static/images/expose-service/ingress.png -------------------------------------------------------------------------------- /static/images/fargate/Browser.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/eks-workshop/2f9d29ed3f82ed6b083649e975a0e574fb8a4058/static/images/fargate/Browser.png -------------------------------------------------------------------------------- /static/images/fargate/IPMode.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/eks-workshop/2f9d29ed3f82ed6b083649e975a0e574fb8a4058/static/images/fargate/IPMode.png -------------------------------------------------------------------------------- /static/images/fargate/InstanceMode.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/eks-workshop/2f9d29ed3f82ed6b083649e975a0e574fb8a4058/static/images/fargate/InstanceMode.png -------------------------------------------------------------------------------- /static/images/fargate/LoadBalancer.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/eks-workshop/2f9d29ed3f82ed6b083649e975a0e574fb8a4058/static/images/fargate/LoadBalancer.png -------------------------------------------------------------------------------- /static/images/fargate/LoadBalancerTargets.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/eks-workshop/2f9d29ed3f82ed6b083649e975a0e574fb8a4058/static/images/fargate/LoadBalancerTargets.png -------------------------------------------------------------------------------- /static/images/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/eks-workshop/2f9d29ed3f82ed6b083649e975a0e574fb8a4058/static/images/favicon.ico -------------------------------------------------------------------------------- /static/images/favicon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/eks-workshop/2f9d29ed3f82ed6b083649e975a0e574fb8a4058/static/images/favicon.png -------------------------------------------------------------------------------- /static/images/flow-log-entry.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/eks-workshop/2f9d29ed3f82ed6b083649e975a0e574fb8a4058/static/images/flow-log-entry.png -------------------------------------------------------------------------------- /static/images/flow-visualizer-filter.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/eks-workshop/2f9d29ed3f82ed6b083649e975a0e574fb8a4058/static/images/flow-visualizer-filter.png -------------------------------------------------------------------------------- /static/images/flow-visualizer.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/eks-workshop/2f9d29ed3f82ed6b083649e975a0e574fb8a4058/static/images/flow-visualizer.png -------------------------------------------------------------------------------- /static/images/grafana-all-nodes.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/eks-workshop/2f9d29ed3f82ed6b083649e975a0e574fb8a4058/static/images/grafana-all-nodes.png -------------------------------------------------------------------------------- /static/images/grafana-all-pods.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/eks-workshop/2f9d29ed3f82ed6b083649e975a0e574fb8a4058/static/images/grafana-all-pods.png -------------------------------------------------------------------------------- /static/images/helm-nginx/welcome_to_nginx.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/eks-workshop/2f9d29ed3f82ed6b083649e975a0e574fb8a4058/static/images/helm-nginx/welcome_to_nginx.png -------------------------------------------------------------------------------- /static/images/helm_micro/micro_example.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/eks-workshop/2f9d29ed3f82ed6b083649e975a0e574fb8a4058/static/images/helm_micro/micro_example.png -------------------------------------------------------------------------------- /static/images/iam-1-create-user.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/eks-workshop/2f9d29ed3f82ed6b083649e975a0e574fb8a4058/static/images/iam-1-create-user.png -------------------------------------------------------------------------------- /static/images/iam-2-attach-policy.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/eks-workshop/2f9d29ed3f82ed6b083649e975a0e574fb8a4058/static/images/iam-2-attach-policy.png -------------------------------------------------------------------------------- /static/images/iam-3-create-user.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/eks-workshop/2f9d29ed3f82ed6b083649e975a0e574fb8a4058/static/images/iam-3-create-user.png -------------------------------------------------------------------------------- /static/images/iam-4-save-url.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/eks-workshop/2f9d29ed3f82ed6b083649e975a0e574fb8a4058/static/images/iam-4-save-url.png -------------------------------------------------------------------------------- /static/images/introduction/Deck_QuestionMark.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/eks-workshop/2f9d29ed3f82ed6b083649e975a0e574fb8a4058/static/images/introduction/Deck_QuestionMark.png -------------------------------------------------------------------------------- /static/images/introduction/architecture_control.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/eks-workshop/2f9d29ed3f82ed6b083649e975a0e574fb8a4058/static/images/introduction/architecture_control.png -------------------------------------------------------------------------------- /static/images/introduction/architecture_control_and_data_overview.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/eks-workshop/2f9d29ed3f82ed6b083649e975a0e574fb8a4058/static/images/introduction/architecture_control_and_data_overview.png -------------------------------------------------------------------------------- /static/images/introduction/architecture_worker.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/eks-workshop/2f9d29ed3f82ed6b083649e975a0e574fb8a4058/static/images/introduction/architecture_worker.png -------------------------------------------------------------------------------- /static/images/introduction/architecture_worker_compact.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/eks-workshop/2f9d29ed3f82ed6b083649e975a0e574fb8a4058/static/images/introduction/architecture_worker_compact.png -------------------------------------------------------------------------------- /static/images/introduction/eks-product-page.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/eks-workshop/2f9d29ed3f82ed6b083649e975a0e574fb8a4058/static/images/introduction/eks-product-page.png -------------------------------------------------------------------------------- /static/images/introduction/k8s.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/eks-workshop/2f9d29ed3f82ed6b083649e975a0e574fb8a4058/static/images/introduction/k8s.png -------------------------------------------------------------------------------- /static/images/introduction/title.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/eks-workshop/2f9d29ed3f82ed6b083649e975a0e574fb8a4058/static/images/introduction/title.png -------------------------------------------------------------------------------- /static/images/introduction/what_is_k8s_new.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/eks-workshop/2f9d29ed3f82ed6b083649e975a0e574fb8a4058/static/images/introduction/what_is_k8s_new.png -------------------------------------------------------------------------------- /static/images/irsa/irsa-oidc.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/eks-workshop/2f9d29ed3f82ed6b083649e975a0e574fb8a4058/static/images/irsa/irsa-oidc.png -------------------------------------------------------------------------------- /static/images/istio/istio-intro1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/eks-workshop/2f9d29ed3f82ed6b083649e975a0e574fb8a4058/static/images/istio/istio-intro1.png -------------------------------------------------------------------------------- /static/images/istio/istio_bookinfo_1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/eks-workshop/2f9d29ed3f82ed6b083649e975a0e574fb8a4058/static/images/istio/istio_bookinfo_1.png -------------------------------------------------------------------------------- /static/images/istio/istio_bookinfo_architecture.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/eks-workshop/2f9d29ed3f82ed6b083649e975a0e574fb8a4058/static/images/istio/istio_bookinfo_architecture.png -------------------------------------------------------------------------------- /static/images/istio/istio_bookinfo_timeout_error.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/eks-workshop/2f9d29ed3f82ed6b083649e975a0e574fb8a4058/static/images/istio/istio_bookinfo_timeout_error.png -------------------------------------------------------------------------------- /static/images/istio/istio_bookinfo_timeout_error2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/eks-workshop/2f9d29ed3f82ed6b083649e975a0e574fb8a4058/static/images/istio/istio_bookinfo_timeout_error2.png -------------------------------------------------------------------------------- /static/images/istio/istio_bookinfo_timeout_no_error.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/eks-workshop/2f9d29ed3f82ed6b083649e975a0e574fb8a4058/static/images/istio/istio_bookinfo_timeout_no_error.png -------------------------------------------------------------------------------- /static/images/istio/istio_grafana1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/eks-workshop/2f9d29ed3f82ed6b083649e975a0e574fb8a4058/static/images/istio/istio_grafana1.png -------------------------------------------------------------------------------- /static/images/istio/istio_grafana_fullscreen.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/eks-workshop/2f9d29ed3f82ed6b083649e975a0e574fb8a4058/static/images/istio/istio_grafana_fullscreen.png -------------------------------------------------------------------------------- /static/images/istio/istio_grafana_open.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/eks-workshop/2f9d29ed3f82ed6b083649e975a0e574fb8a4058/static/images/istio/istio_grafana_open.png -------------------------------------------------------------------------------- /static/images/istio/istio_kiali_graph.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/eks-workshop/2f9d29ed3f82ed6b083649e975a0e574fb8a4058/static/images/istio/istio_kiali_graph.png -------------------------------------------------------------------------------- /static/images/istio/istio_kiali_metrics.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/eks-workshop/2f9d29ed3f82ed6b083649e975a0e574fb8a4058/static/images/istio/istio_kiali_metrics.png -------------------------------------------------------------------------------- /static/images/istio/istio_kiali_open.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/eks-workshop/2f9d29ed3f82ed6b083649e975a0e574fb8a4058/static/images/istio/istio_kiali_open.png -------------------------------------------------------------------------------- /static/images/istio/istio_kiali_popout.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/eks-workshop/2f9d29ed3f82ed6b083649e975a0e574fb8a4058/static/images/istio/istio_kiali_popout.png -------------------------------------------------------------------------------- /static/images/jenkins/jenkins-codecommititem.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/eks-workshop/2f9d29ed3f82ed6b083649e975a0e574fb8a4058/static/images/jenkins/jenkins-codecommititem.png -------------------------------------------------------------------------------- /static/images/jenkins/jenkins-eksworkshop-app-master.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/eks-workshop/2f9d29ed3f82ed6b083649e975a0e574fb8a4058/static/images/jenkins/jenkins-eksworkshop-app-master.png -------------------------------------------------------------------------------- /static/images/jenkins/jenkins-gitcredentials.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/eks-workshop/2f9d29ed3f82ed6b083649e975a0e574fb8a4058/static/images/jenkins/jenkins-gitcredentials.png -------------------------------------------------------------------------------- /static/images/jenkins/jenkins-login.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/eks-workshop/2f9d29ed3f82ed6b083649e975a0e574fb8a4058/static/images/jenkins/jenkins-login.png -------------------------------------------------------------------------------- /static/images/jenkins/jenkins-new-credentials.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/eks-workshop/2f9d29ed3f82ed6b083649e975a0e574fb8a4058/static/images/jenkins/jenkins-new-credentials.png -------------------------------------------------------------------------------- /static/images/jenkins/jenkins-newitem.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/eks-workshop/2f9d29ed3f82ed6b083649e975a0e574fb8a4058/static/images/jenkins/jenkins-newitem.png -------------------------------------------------------------------------------- /static/images/jenkins/jenkins-projectsetup.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/eks-workshop/2f9d29ed3f82ed6b083649e975a0e574fb8a4058/static/images/jenkins/jenkins-projectsetup.png -------------------------------------------------------------------------------- /static/images/karpenter_banner.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/eks-workshop/2f9d29ed3f82ed6b083649e975a0e574fb8a4058/static/images/karpenter_banner.png -------------------------------------------------------------------------------- /static/images/kibana-flow-log.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/eks-workshop/2f9d29ed3f82ed6b083649e975a0e574fb8a4058/static/images/kibana-flow-log.png -------------------------------------------------------------------------------- /static/images/kube_ops_view/kube-ops-view-legend.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/eks-workshop/2f9d29ed3f82ed6b083649e975a0e574fb8a4058/static/images/kube_ops_view/kube-ops-view-legend.png -------------------------------------------------------------------------------- /static/images/kube_ops_view/kube-ops-view.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/eks-workshop/2f9d29ed3f82ed6b083649e975a0e574fb8a4058/static/images/kube_ops_view/kube-ops-view.png -------------------------------------------------------------------------------- /static/images/kubeflow/dashboard-create-namespace.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/eks-workshop/2f9d29ed3f82ed6b083649e975a0e574fb8a4058/static/images/kubeflow/dashboard-create-namespace.png -------------------------------------------------------------------------------- /static/images/kubeflow/dashboard-first-look.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/eks-workshop/2f9d29ed3f82ed6b083649e975a0e574fb8a4058/static/images/kubeflow/dashboard-first-look.png -------------------------------------------------------------------------------- /static/images/kubeflow/dashboard-login.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/eks-workshop/2f9d29ed3f82ed6b083649e975a0e574fb8a4058/static/images/kubeflow/dashboard-login.png -------------------------------------------------------------------------------- /static/images/kubeflow/dashboard-new-notebook-server.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/eks-workshop/2f9d29ed3f82ed6b083649e975a0e574fb8a4058/static/images/kubeflow/dashboard-new-notebook-server.png -------------------------------------------------------------------------------- /static/images/kubeflow/dashboard-welcome.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/eks-workshop/2f9d29ed3f82ed6b083649e975a0e574fb8a4058/static/images/kubeflow/dashboard-welcome.png -------------------------------------------------------------------------------- /static/images/kubeflow/distributed-training-notebook.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/eks-workshop/2f9d29ed3f82ed6b083649e975a0e574fb8a4058/static/images/kubeflow/distributed-training-notebook.jpg -------------------------------------------------------------------------------- /static/images/kubeflow/eks-kubeflow-workshop-notebook-server.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/eks-workshop/2f9d29ed3f82ed6b083649e975a0e574fb8a4058/static/images/kubeflow/eks-kubeflow-workshop-notebook-server.png -------------------------------------------------------------------------------- /static/images/kubeflow/fairing-call-prediction.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/eks-workshop/2f9d29ed3f82ed6b083649e975a0e574fb8a4058/static/images/kubeflow/fairing-call-prediction.png -------------------------------------------------------------------------------- /static/images/kubeflow/fairing-create-ecr-repo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/eks-workshop/2f9d29ed3f82ed6b083649e975a0e574fb8a4058/static/images/kubeflow/fairing-create-ecr-repo.png -------------------------------------------------------------------------------- /static/images/kubeflow/fairing-deploy-prediction.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/eks-workshop/2f9d29ed3f82ed6b083649e975a0e574fb8a4058/static/images/kubeflow/fairing-deploy-prediction.png -------------------------------------------------------------------------------- /static/images/kubeflow/fairing-e2e.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/eks-workshop/2f9d29ed3f82ed6b083649e975a0e574fb8a4058/static/images/kubeflow/fairing-e2e.png -------------------------------------------------------------------------------- /static/images/kubeflow/fairing-ecr-login.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/eks-workshop/2f9d29ed3f82ed6b083649e975a0e574fb8a4058/static/images/kubeflow/fairing-ecr-login.png -------------------------------------------------------------------------------- /static/images/kubeflow/fairing-git-clone.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/eks-workshop/2f9d29ed3f82ed6b083649e975a0e574fb8a4058/static/images/kubeflow/fairing-git-clone.png -------------------------------------------------------------------------------- /static/images/kubeflow/fairing-install-from-github.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/eks-workshop/2f9d29ed3f82ed6b083649e975a0e574fb8a4058/static/images/kubeflow/fairing-install-from-github.png -------------------------------------------------------------------------------- /static/images/kubeflow/fairing-remote-job.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/eks-workshop/2f9d29ed3f82ed6b083649e975a0e574fb8a4058/static/images/kubeflow/fairing-remote-job.png -------------------------------------------------------------------------------- /static/images/kubeflow/fairing-shutdown-notebook.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/eks-workshop/2f9d29ed3f82ed6b083649e975a0e574fb8a4058/static/images/kubeflow/fairing-shutdown-notebook.png -------------------------------------------------------------------------------- /static/images/kubeflow/fairing-train-locally.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/eks-workshop/2f9d29ed3f82ed6b083649e975a0e574fb8a4058/static/images/kubeflow/fairing-train-locally.png -------------------------------------------------------------------------------- /static/images/kubeflow/fairing-validate-installed-packages.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/eks-workshop/2f9d29ed3f82ed6b083649e975a0e574fb8a4058/static/images/kubeflow/fairing-validate-installed-packages.png -------------------------------------------------------------------------------- /static/images/kubeflow/fairing-view-introduction-notebook.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/eks-workshop/2f9d29ed3f82ed6b083649e975a0e574fb8a4058/static/images/kubeflow/fairing-view-introduction-notebook.png -------------------------------------------------------------------------------- /static/images/kubeflow/fairing-xgboost-local.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/eks-workshop/2f9d29ed3f82ed6b083649e975a0e574fb8a4058/static/images/kubeflow/fairing-xgboost-local.png -------------------------------------------------------------------------------- /static/images/kubeflow/fairing-xgboost-remote.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/eks-workshop/2f9d29ed3f82ed6b083649e975a0e574fb8a4058/static/images/kubeflow/fairing-xgboost-remote.png -------------------------------------------------------------------------------- /static/images/kubeflow/jupyter-empty-notebook.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/eks-workshop/2f9d29ed3f82ed6b083649e975a0e574fb8a4058/static/images/kubeflow/jupyter-empty-notebook.png -------------------------------------------------------------------------------- /static/images/kubeflow/jupyter-enter-notebook-server-name.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/eks-workshop/2f9d29ed3f82ed6b083649e975a0e574fb8a4058/static/images/kubeflow/jupyter-enter-notebook-server-name.png -------------------------------------------------------------------------------- /static/images/kubeflow/jupyter-mnist-code-main.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/eks-workshop/2f9d29ed3f82ed6b083649e975a0e574fb8a4058/static/images/kubeflow/jupyter-mnist-code-main.png -------------------------------------------------------------------------------- /static/images/kubeflow/jupyter-mnist-code.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/eks-workshop/2f9d29ed3f82ed6b083649e975a0e574fb8a4058/static/images/kubeflow/jupyter-mnist-code.png -------------------------------------------------------------------------------- /static/images/kubeflow/jupyter-mnist-training.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/eks-workshop/2f9d29ed3f82ed6b083649e975a0e574fb8a4058/static/images/kubeflow/jupyter-mnist-training.png -------------------------------------------------------------------------------- /static/images/kubeflow/jupyter-new-notebook.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/eks-workshop/2f9d29ed3f82ed6b083649e975a0e574fb8a4058/static/images/kubeflow/jupyter-new-notebook.png -------------------------------------------------------------------------------- /static/images/kubeflow/jupyter-new-python3-notebook.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/eks-workshop/2f9d29ed3f82ed6b083649e975a0e574fb8a4058/static/images/kubeflow/jupyter-new-python3-notebook.png -------------------------------------------------------------------------------- /static/images/kubeflow/jupyter-notebook-servers.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/eks-workshop/2f9d29ed3f82ed6b083649e975a0e574fb8a4058/static/images/kubeflow/jupyter-notebook-servers.png -------------------------------------------------------------------------------- /static/images/kubeflow/jupyter-select-cpu.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/eks-workshop/2f9d29ed3f82ed6b083649e975a0e574fb8a4058/static/images/kubeflow/jupyter-select-cpu.png -------------------------------------------------------------------------------- /static/images/kubeflow/jupyter-select-image.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/eks-workshop/2f9d29ed3f82ed6b083649e975a0e574fb8a4058/static/images/kubeflow/jupyter-select-image.png -------------------------------------------------------------------------------- /static/images/kubeflow/jupyter-select-namespace.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/eks-workshop/2f9d29ed3f82ed6b083649e975a0e574fb8a4058/static/images/kubeflow/jupyter-select-namespace.png -------------------------------------------------------------------------------- /static/images/kubeflow/pipelines-deploy.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/eks-workshop/2f9d29ed3f82ed6b083649e975a0e574fb8a4058/static/images/kubeflow/pipelines-deploy.png -------------------------------------------------------------------------------- /static/images/kubeflow/pipelines-run-logs.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/eks-workshop/2f9d29ed3f82ed6b083649e975a0e574fb8a4058/static/images/kubeflow/pipelines-run-logs.png -------------------------------------------------------------------------------- /static/images/kubeflow/pipelines-sagemaker-endpoint.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/eks-workshop/2f9d29ed3f82ed6b083649e975a0e574fb8a4058/static/images/kubeflow/pipelines-sagemaker-endpoint.png -------------------------------------------------------------------------------- /static/images/kubeflow/pipelines-sagemaker-execution-role.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/eks-workshop/2f9d29ed3f82ed6b083649e975a0e574fb8a4058/static/images/kubeflow/pipelines-sagemaker-execution-role.png -------------------------------------------------------------------------------- /static/images/kubeflow/pipelines-sagemaker-experiment-run.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/eks-workshop/2f9d29ed3f82ed6b083649e975a0e574fb8a4058/static/images/kubeflow/pipelines-sagemaker-experiment-run.png -------------------------------------------------------------------------------- /static/images/kubeflow/pipelines-sagemaker-experiment.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/eks-workshop/2f9d29ed3f82ed6b083649e975a0e574fb8a4058/static/images/kubeflow/pipelines-sagemaker-experiment.png -------------------------------------------------------------------------------- /static/images/kubeflow/pipelines-sagemaker-overview.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/eks-workshop/2f9d29ed3f82ed6b083649e975a0e574fb8a4058/static/images/kubeflow/pipelines-sagemaker-overview.png -------------------------------------------------------------------------------- /static/images/kubeflow/pipelines-sagemaker-predictions.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/eks-workshop/2f9d29ed3f82ed6b083649e975a0e574fb8a4058/static/images/kubeflow/pipelines-sagemaker-predictions.png -------------------------------------------------------------------------------- /static/images/kubeflow/pipelines-view-sagemaker-notebook.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/eks-workshop/2f9d29ed3f82ed6b083649e975a0e574fb8a4058/static/images/kubeflow/pipelines-view-sagemaker-notebook.png -------------------------------------------------------------------------------- /static/images/logging/logging_os_dashboard.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/eks-workshop/2f9d29ed3f82ed6b083649e975a0e574fb8a4058/static/images/logging/logging_os_dashboard.png -------------------------------------------------------------------------------- /static/images/logging/opensearch_01.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/eks-workshop/2f9d29ed3f82ed6b083649e975a0e574fb8a4058/static/images/logging/opensearch_01.png -------------------------------------------------------------------------------- /static/images/logging/opensearch_02.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/eks-workshop/2f9d29ed3f82ed6b083649e975a0e574fb8a4058/static/images/logging/opensearch_02.png -------------------------------------------------------------------------------- /static/images/logging/opensearch_03.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/eks-workshop/2f9d29ed3f82ed6b083649e975a0e574fb8a4058/static/images/logging/opensearch_03.png -------------------------------------------------------------------------------- /static/images/logging/opensearch_04.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/eks-workshop/2f9d29ed3f82ed6b083649e975a0e574fb8a4058/static/images/logging/opensearch_04.png -------------------------------------------------------------------------------- /static/images/logging/opensearch_05.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/eks-workshop/2f9d29ed3f82ed6b083649e975a0e574fb8a4058/static/images/logging/opensearch_05.png -------------------------------------------------------------------------------- /static/images/logging/opensearch_06.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/eks-workshop/2f9d29ed3f82ed6b083649e975a0e574fb8a4058/static/images/logging/opensearch_06.png -------------------------------------------------------------------------------- /static/images/logging/opensearch_07.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/eks-workshop/2f9d29ed3f82ed6b083649e975a0e574fb8a4058/static/images/logging/opensearch_07.png -------------------------------------------------------------------------------- /static/images/logging/opensearch_08.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/eks-workshop/2f9d29ed3f82ed6b083649e975a0e574fb8a4058/static/images/logging/opensearch_08.png -------------------------------------------------------------------------------- /static/images/logging/opensearch_09.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/eks-workshop/2f9d29ed3f82ed6b083649e975a0e574fb8a4058/static/images/logging/opensearch_09.png -------------------------------------------------------------------------------- /static/images/migrate_to_eks/configure-eks-cluster-vpc-peering.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/eks-workshop/2f9d29ed3f82ed6b083649e975a0e574fb8a4058/static/images/migrate_to_eks/configure-eks-cluster-vpc-peering.png -------------------------------------------------------------------------------- /static/images/migrate_to_eks/counter-app.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/eks-workshop/2f9d29ed3f82ed6b083649e975a0e574fb8a4058/static/images/migrate_to_eks/counter-app.gif -------------------------------------------------------------------------------- /static/images/migrate_to_eks/counter-application-from-kind-cluster.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/eks-workshop/2f9d29ed3f82ed6b083649e975a0e574fb8a4058/static/images/migrate_to_eks/counter-application-from-kind-cluster.png -------------------------------------------------------------------------------- /static/images/migrate_to_eks/create-kind-cluster.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/eks-workshop/2f9d29ed3f82ed6b083649e975a0e574fb8a4058/static/images/migrate_to_eks/create-kind-cluster.png -------------------------------------------------------------------------------- /static/images/migrate_to_eks/database-moved-to-eks.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/eks-workshop/2f9d29ed3f82ed6b083649e975a0e574fb8a4058/static/images/migrate_to_eks/database-moved-to-eks.png -------------------------------------------------------------------------------- /static/images/migrate_to_eks/front-end-moved-to-eks.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/eks-workshop/2f9d29ed3f82ed6b083649e975a0e574fb8a4058/static/images/migrate_to_eks/front-end-moved-to-eks.png -------------------------------------------------------------------------------- /static/images/ocean/actions_cluster_roll.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/eks-workshop/2f9d29ed3f82ed6b083649e975a0e574fb8a4058/static/images/ocean/actions_cluster_roll.png -------------------------------------------------------------------------------- /static/images/ocean/actions_customize_scaling.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/eks-workshop/2f9d29ed3f82ed6b083649e975a0e574fb8a4058/static/images/ocean/actions_customize_scaling.png -------------------------------------------------------------------------------- /static/images/ocean/actions_delete.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/eks-workshop/2f9d29ed3f82ed6b083649e975a0e574fb8a4058/static/images/ocean/actions_delete.png -------------------------------------------------------------------------------- /static/images/ocean/actions_launch_specs.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/eks-workshop/2f9d29ed3f82ed6b083649e975a0e574fb8a4058/static/images/ocean/actions_launch_specs.png -------------------------------------------------------------------------------- /static/images/ocean/chat.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/eks-workshop/2f9d29ed3f82ed6b083649e975a0e574fb8a4058/static/images/ocean/chat.png -------------------------------------------------------------------------------- /static/images/ocean/choose_cloud_provider.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/eks-workshop/2f9d29ed3f82ed6b083649e975a0e574fb8a4058/static/images/ocean/choose_cloud_provider.png -------------------------------------------------------------------------------- /static/images/ocean/cluster_roll_configuration.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/eks-workshop/2f9d29ed3f82ed6b083649e975a0e574fb8a4058/static/images/ocean/cluster_roll_configuration.png -------------------------------------------------------------------------------- /static/images/ocean/cluster_roll_tab.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/eks-workshop/2f9d29ed3f82ed6b083649e975a0e574fb8a4058/static/images/ocean/cluster_roll_tab.png -------------------------------------------------------------------------------- /static/images/ocean/compute_settings.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/eks-workshop/2f9d29ed3f82ed6b083649e975a0e574fb8a4058/static/images/ocean/compute_settings.png -------------------------------------------------------------------------------- /static/images/ocean/connect_aws_account.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/eks-workshop/2f9d29ed3f82ed6b083649e975a0e574fb8a4058/static/images/ocean/connect_aws_account.png -------------------------------------------------------------------------------- /static/images/ocean/connectivity.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/eks-workshop/2f9d29ed3f82ed6b083649e975a0e574fb8a4058/static/images/ocean/connectivity.png -------------------------------------------------------------------------------- /static/images/ocean/create-virtual-node-group.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/eks-workshop/2f9d29ed3f82ed6b083649e975a0e574fb8a4058/static/images/ocean/create-virtual-node-group.png -------------------------------------------------------------------------------- /static/images/ocean/customize_scaling.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/eks-workshop/2f9d29ed3f82ed6b083649e975a0e574fb8a4058/static/images/ocean/customize_scaling.png -------------------------------------------------------------------------------- /static/images/ocean/delete_cluster.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/eks-workshop/2f9d29ed3f82ed6b083649e975a0e574fb8a4058/static/images/ocean/delete_cluster.png -------------------------------------------------------------------------------- /static/images/ocean/delete_role.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/eks-workshop/2f9d29ed3f82ed6b083649e975a0e574fb8a4058/static/images/ocean/delete_role.png -------------------------------------------------------------------------------- /static/images/ocean/delete_stack.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/eks-workshop/2f9d29ed3f82ed6b083649e975a0e574fb8a4058/static/images/ocean/delete_stack.png -------------------------------------------------------------------------------- /static/images/ocean/general_settings.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/eks-workshop/2f9d29ed3f82ed6b083649e975a0e574fb8a4058/static/images/ocean/general_settings.png -------------------------------------------------------------------------------- /static/images/ocean/launch_spec_1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/eks-workshop/2f9d29ed3f82ed6b083649e975a0e574fb8a4058/static/images/ocean/launch_spec_1.png -------------------------------------------------------------------------------- /static/images/ocean/launch_spec_2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/eks-workshop/2f9d29ed3f82ed6b083649e975a0e574fb8a4058/static/images/ocean/launch_spec_2.png -------------------------------------------------------------------------------- /static/images/ocean/launch_specs.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/eks-workshop/2f9d29ed3f82ed6b083649e975a0e574fb8a4058/static/images/ocean/launch_specs.png -------------------------------------------------------------------------------- /static/images/ocean/log_tab.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/eks-workshop/2f9d29ed3f82ed6b083649e975a0e574fb8a4058/static/images/ocean/log_tab.png -------------------------------------------------------------------------------- /static/images/ocean/logs_scale_down.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/eks-workshop/2f9d29ed3f82ed6b083649e975a0e574fb8a4058/static/images/ocean/logs_scale_down.png -------------------------------------------------------------------------------- /static/images/ocean/new-virtual-node-group-form.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/eks-workshop/2f9d29ed3f82ed6b083649e975a0e574fb8a4058/static/images/ocean/new-virtual-node-group-form.png -------------------------------------------------------------------------------- /static/images/ocean/ocean_overview.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/eks-workshop/2f9d29ed3f82ed6b083649e975a0e574fb8a4058/static/images/ocean/ocean_overview.png -------------------------------------------------------------------------------- /static/images/ocean/overview-headroom-modal.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/eks-workshop/2f9d29ed3f82ed6b083649e975a0e574fb8a4058/static/images/ocean/overview-headroom-modal.png -------------------------------------------------------------------------------- /static/images/ocean/overview-headroom.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/eks-workshop/2f9d29ed3f82ed6b083649e975a0e574fb8a4058/static/images/ocean/overview-headroom.png -------------------------------------------------------------------------------- /static/images/ocean/review.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/eks-workshop/2f9d29ed3f82ed6b083649e975a0e574fb8a4058/static/images/ocean/review.png -------------------------------------------------------------------------------- /static/images/ocean/rightsizing.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/eks-workshop/2f9d29ed3f82ed6b083649e975a0e574fb8a4058/static/images/ocean/rightsizing.png -------------------------------------------------------------------------------- /static/images/ocean/rightsizing_1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/eks-workshop/2f9d29ed3f82ed6b083649e975a0e574fb8a4058/static/images/ocean/rightsizing_1.png -------------------------------------------------------------------------------- /static/images/ocean/rightsizing_2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/eks-workshop/2f9d29ed3f82ed6b083649e975a0e574fb8a4058/static/images/ocean/rightsizing_2.png -------------------------------------------------------------------------------- /static/images/ocean/scale_down_asg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/eks-workshop/2f9d29ed3f82ed6b083649e975a0e574fb8a4058/static/images/ocean/scale_down_asg.png -------------------------------------------------------------------------------- /static/images/ocean/scale_up_details.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/eks-workshop/2f9d29ed3f82ed6b083649e975a0e574fb8a4058/static/images/ocean/scale_up_details.png -------------------------------------------------------------------------------- /static/images/ocean/scale_up_log.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/eks-workshop/2f9d29ed3f82ed6b083649e975a0e574fb8a4058/static/images/ocean/scale_up_log.png -------------------------------------------------------------------------------- /static/images/ocean/showback.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/eks-workshop/2f9d29ed3f82ed6b083649e975a0e574fb8a4058/static/images/ocean/showback.png -------------------------------------------------------------------------------- /static/images/ocean/showback_filter.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/eks-workshop/2f9d29ed3f82ed6b083649e975a0e574fb8a4058/static/images/ocean/showback_filter.png -------------------------------------------------------------------------------- /static/images/ocean/spot_logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/eks-workshop/2f9d29ed3f82ed6b083649e975a0e574fb8a4058/static/images/ocean/spot_logo.png -------------------------------------------------------------------------------- /static/images/ocean/use_cases.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/eks-workshop/2f9d29ed3f82ed6b083649e975a0e574fb8a4058/static/images/ocean/use_cases.png -------------------------------------------------------------------------------- /static/images/ocean/virtual-node-group-tab.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/eks-workshop/2f9d29ed3f82ed6b083649e975a0e574fb8a4058/static/images/ocean/virtual-node-group-tab.png -------------------------------------------------------------------------------- /static/images/opa/opa-service.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/eks-workshop/2f9d29ed3f82ed6b083649e975a0e574fb8a4058/static/images/opa/opa-service.png -------------------------------------------------------------------------------- /static/images/pixie/http_request_error.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/eks-workshop/2f9d29ed3f82ed6b083649e975a0e574fb8a4058/static/images/pixie/http_request_error.png -------------------------------------------------------------------------------- /static/images/pixie/mysql_request_error.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/eks-workshop/2f9d29ed3f82ed6b083649e975a0e574fb8a4058/static/images/pixie/mysql_request_error.png -------------------------------------------------------------------------------- /static/images/pixie/px_cluster.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/eks-workshop/2f9d29ed3f82ed6b083649e975a0e574fb8a4058/static/images/pixie/px_cluster.png -------------------------------------------------------------------------------- /static/images/pixie/px_namespace.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/eks-workshop/2f9d29ed3f82ed6b083649e975a0e574fb8a4058/static/images/pixie/px_namespace.png -------------------------------------------------------------------------------- /static/images/pixie/px_service.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/eks-workshop/2f9d29ed3f82ed6b083649e975a0e574fb8a4058/static/images/pixie/px_service.png -------------------------------------------------------------------------------- /static/images/pixie/px_service_error.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/eks-workshop/2f9d29ed3f82ed6b083649e975a0e574fb8a4058/static/images/pixie/px_service_error.png -------------------------------------------------------------------------------- /static/images/pixie/script_editor.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/eks-workshop/2f9d29ed3f82ed6b083649e975a0e574fb8a4058/static/images/pixie/script_editor.png -------------------------------------------------------------------------------- /static/images/pixie/select_cluster.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/eks-workshop/2f9d29ed3f82ed6b083649e975a0e574fb8a4058/static/images/pixie/select_cluster.png -------------------------------------------------------------------------------- /static/images/pixie/select_namespace.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/eks-workshop/2f9d29ed3f82ed6b083649e975a0e574fb8a4058/static/images/pixie/select_namespace.png -------------------------------------------------------------------------------- /static/images/pixie/select_script.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/eks-workshop/2f9d29ed3f82ed6b083649e975a0e574fb8a4058/static/images/pixie/select_script.png -------------------------------------------------------------------------------- /static/images/pixie/select_starttime.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/eks-workshop/2f9d29ed3f82ed6b083649e975a0e574fb8a4058/static/images/pixie/select_starttime.png -------------------------------------------------------------------------------- /static/images/pixie/service_deeplink.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/eks-workshop/2f9d29ed3f82ed6b083649e975a0e574fb8a4058/static/images/pixie/service_deeplink.png -------------------------------------------------------------------------------- /static/images/pixie/sock_shop.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/eks-workshop/2f9d29ed3f82ed6b083649e975a0e574fb8a4058/static/images/pixie/sock_shop.png -------------------------------------------------------------------------------- /static/images/policy-diff.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/eks-workshop/2f9d29ed3f82ed6b083649e975a0e574fb8a4058/static/images/policy-diff.png -------------------------------------------------------------------------------- /static/images/policy-evaluation-tiers.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/eks-workshop/2f9d29ed3f82ed6b083649e975a0e574fb8a4058/static/images/policy-evaluation-tiers.png -------------------------------------------------------------------------------- /static/images/policy-impact.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/eks-workshop/2f9d29ed3f82ed6b083649e975a0e574fb8a4058/static/images/policy-impact.png -------------------------------------------------------------------------------- /static/images/policy-recommendations.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/eks-workshop/2f9d29ed3f82ed6b083649e975a0e574fb8a4058/static/images/policy-recommendations.png -------------------------------------------------------------------------------- /static/images/popout.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/eks-workshop/2f9d29ed3f82ed6b083649e975a0e574fb8a4058/static/images/popout.png -------------------------------------------------------------------------------- /static/images/portal_buttons.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/eks-workshop/2f9d29ed3f82ed6b083649e975a0e574fb8a4058/static/images/portal_buttons.png -------------------------------------------------------------------------------- /static/images/portal_logged_in.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/eks-workshop/2f9d29ed3f82ed6b083649e975a0e574fb8a4058/static/images/portal_logged_in.png -------------------------------------------------------------------------------- /static/images/portal_login.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/eks-workshop/2f9d29ed3f82ed6b083649e975a0e574fb8a4058/static/images/portal_login.png -------------------------------------------------------------------------------- /static/images/prerequisites/c9attachrole.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/eks-workshop/2f9d29ed3f82ed6b083649e975a0e574fb8a4058/static/images/prerequisites/c9attachrole.png -------------------------------------------------------------------------------- /static/images/prerequisites/c9disableiam.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/eks-workshop/2f9d29ed3f82ed6b083649e975a0e574fb8a4058/static/images/prerequisites/c9disableiam.png -------------------------------------------------------------------------------- /static/images/prerequisites/c9instancerole.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/eks-workshop/2f9d29ed3f82ed6b083649e975a0e574fb8a4058/static/images/prerequisites/c9instancerole.png -------------------------------------------------------------------------------- /static/images/prerequisites/cloud9-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/eks-workshop/2f9d29ed3f82ed6b083649e975a0e574fb8a4058/static/images/prerequisites/cloud9-1.png -------------------------------------------------------------------------------- /static/images/prerequisites/cloud9-2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/eks-workshop/2f9d29ed3f82ed6b083649e975a0e574fb8a4058/static/images/prerequisites/cloud9-2.png -------------------------------------------------------------------------------- /static/images/prerequisites/cloud9-3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/eks-workshop/2f9d29ed3f82ed6b083649e975a0e574fb8a4058/static/images/prerequisites/cloud9-3.png -------------------------------------------------------------------------------- /static/images/prerequisites/cloud9-4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/eks-workshop/2f9d29ed3f82ed6b083649e975a0e574fb8a4058/static/images/prerequisites/cloud9-4.png -------------------------------------------------------------------------------- /static/images/prerequisites/cloud9-role.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/eks-workshop/2f9d29ed3f82ed6b083649e975a0e574fb8a4058/static/images/prerequisites/cloud9-role.png -------------------------------------------------------------------------------- /static/images/prerequisites/createrole.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/eks-workshop/2f9d29ed3f82ed6b083649e975a0e574fb8a4058/static/images/prerequisites/createrole.png -------------------------------------------------------------------------------- /static/images/prometheus-targets.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/eks-workshop/2f9d29ed3f82ed6b083649e975a0e574fb8a4058/static/images/prometheus-targets.png -------------------------------------------------------------------------------- /static/images/rogue-pod-view.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/eks-workshop/2f9d29ed3f82ed6b083649e975a0e574fb8a4058/static/images/rogue-pod-view.png -------------------------------------------------------------------------------- /static/images/scaling-asg-config.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/eks-workshop/2f9d29ed3f82ed6b083649e975a0e574fb8a4058/static/images/scaling-asg-config.png -------------------------------------------------------------------------------- /static/images/scaling-asg-up.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/eks-workshop/2f9d29ed3f82ed6b083649e975a0e574fb8a4058/static/images/scaling-asg-up.png -------------------------------------------------------------------------------- /static/images/scaling-asg-up2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/eks-workshop/2f9d29ed3f82ed6b083649e975a0e574fb8a4058/static/images/scaling-asg-up2.png -------------------------------------------------------------------------------- /static/images/scaling-asg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/eks-workshop/2f9d29ed3f82ed6b083649e975a0e574fb8a4058/static/images/scaling-asg.png -------------------------------------------------------------------------------- /static/images/scaling-cp-https.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/eks-workshop/2f9d29ed3f82ed6b083649e975a0e574fb8a4058/static/images/scaling-cp-https.png -------------------------------------------------------------------------------- /static/images/scaling-cp-outbound.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/eks-workshop/2f9d29ed3f82ed6b083649e975a0e574fb8a4058/static/images/scaling-cp-outbound.png -------------------------------------------------------------------------------- /static/images/scaling-ec2-sg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/eks-workshop/2f9d29ed3f82ed6b083649e975a0e574fb8a4058/static/images/scaling-ec2-sg.png -------------------------------------------------------------------------------- /static/images/scaling-hpa-results.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/eks-workshop/2f9d29ed3f82ed6b083649e975a0e574fb8a4058/static/images/scaling-hpa-results.png -------------------------------------------------------------------------------- /static/images/secret-in-secretsManager.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/eks-workshop/2f9d29ed3f82ed6b083649e975a0e574fb8a4058/static/images/secret-in-secretsManager.png -------------------------------------------------------------------------------- /static/images/sg-list.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/eks-workshop/2f9d29ed3f82ed6b083649e975a0e574fb8a4058/static/images/sg-list.png -------------------------------------------------------------------------------- /static/images/sg-per-pod/sg-per-pod_1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/eks-workshop/2f9d29ed3f82ed6b083649e975a0e574fb8a4058/static/images/sg-per-pod/sg-per-pod_1.png -------------------------------------------------------------------------------- /static/images/sg-per-pod/sg-per-pod_2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/eks-workshop/2f9d29ed3f82ed6b083649e975a0e574fb8a4058/static/images/sg-per-pod/sg-per-pod_2.png -------------------------------------------------------------------------------- /static/images/sg-per-pod/sg-per-pod_3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/eks-workshop/2f9d29ed3f82ed6b083649e975a0e574fb8a4058/static/images/sg-per-pod/sg-per-pod_3.png -------------------------------------------------------------------------------- /static/images/sg-per-pod/sg-per-pod_4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/eks-workshop/2f9d29ed3f82ed6b083649e975a0e574fb8a4058/static/images/sg-per-pod/sg-per-pod_4.png -------------------------------------------------------------------------------- /static/images/sg-per-pod/sg-per-pod_5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/eks-workshop/2f9d29ed3f82ed6b083649e975a0e574fb8a4058/static/images/sg-per-pod/sg-per-pod_5.png -------------------------------------------------------------------------------- /static/images/sg-per-pod/sg-per-pod_6.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/eks-workshop/2f9d29ed3f82ed6b083649e975a0e574fb8a4058/static/images/sg-per-pod/sg-per-pod_6.png -------------------------------------------------------------------------------- /static/images/specific-flows.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/eks-workshop/2f9d29ed3f82ed6b083649e975a0e574fb8a4058/static/images/specific-flows.png -------------------------------------------------------------------------------- /static/images/spinnnaker/application.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/eks-workshop/2f9d29ed3f82ed6b083649e975a0e574fb8a4058/static/images/spinnnaker/application.png -------------------------------------------------------------------------------- /static/images/spinnnaker/architecture-s.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/eks-workshop/2f9d29ed3f82ed6b083649e975a0e574fb8a4058/static/images/spinnnaker/architecture-s.png -------------------------------------------------------------------------------- /static/images/spinnnaker/architecture.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/eks-workshop/2f9d29ed3f82ed6b083649e975a0e574fb8a4058/static/images/spinnnaker/architecture.png -------------------------------------------------------------------------------- /static/images/spinnnaker/bake.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/eks-workshop/2f9d29ed3f82ed6b083649e975a0e574fb8a4058/static/images/spinnnaker/bake.png -------------------------------------------------------------------------------- /static/images/spinnnaker/bake2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/eks-workshop/2f9d29ed3f82ed6b083649e975a0e574fb8a4058/static/images/spinnnaker/bake2.png -------------------------------------------------------------------------------- /static/images/spinnnaker/bake3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/eks-workshop/2f9d29ed3f82ed6b083649e975a0e574fb8a4058/static/images/spinnnaker/bake3.png -------------------------------------------------------------------------------- /static/images/spinnnaker/deploy.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/eks-workshop/2f9d29ed3f82ed6b083649e975a0e574fb8a4058/static/images/spinnnaker/deploy.png -------------------------------------------------------------------------------- /static/images/spinnnaker/deploy1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/eks-workshop/2f9d29ed3f82ed6b083649e975a0e574fb8a4058/static/images/spinnnaker/deploy1.png -------------------------------------------------------------------------------- /static/images/spinnnaker/deploy2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/eks-workshop/2f9d29ed3f82ed6b083649e975a0e574fb8a4058/static/images/spinnnaker/deploy2.png -------------------------------------------------------------------------------- /static/images/spinnnaker/details.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/eks-workshop/2f9d29ed3f82ed6b083649e975a0e574fb8a4058/static/images/spinnnaker/details.png -------------------------------------------------------------------------------- /static/images/spinnnaker/details1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/eks-workshop/2f9d29ed3f82ed6b083649e975a0e574fb8a4058/static/images/spinnnaker/details1.png -------------------------------------------------------------------------------- /static/images/spinnnaker/details2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/eks-workshop/2f9d29ed3f82ed6b083649e975a0e574fb8a4058/static/images/spinnnaker/details2.png -------------------------------------------------------------------------------- /static/images/spinnnaker/hdeploy1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/eks-workshop/2f9d29ed3f82ed6b083649e975a0e574fb8a4058/static/images/spinnnaker/hdeploy1.png -------------------------------------------------------------------------------- /static/images/spinnnaker/hdeploy2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/eks-workshop/2f9d29ed3f82ed6b083649e975a0e574fb8a4058/static/images/spinnnaker/hdeploy2.png -------------------------------------------------------------------------------- /static/images/spinnnaker/hdeploy3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/eks-workshop/2f9d29ed3f82ed6b083649e975a0e574fb8a4058/static/images/spinnnaker/hdeploy3.png -------------------------------------------------------------------------------- /static/images/spinnnaker/helmpipeline.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/eks-workshop/2f9d29ed3f82ed6b083649e975a0e574fb8a4058/static/images/spinnnaker/helmpipeline.png -------------------------------------------------------------------------------- /static/images/spinnnaker/manifest1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/eks-workshop/2f9d29ed3f82ed6b083649e975a0e574fb8a4058/static/images/spinnnaker/manifest1.png -------------------------------------------------------------------------------- /static/images/spinnnaker/manual.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/eks-workshop/2f9d29ed3f82ed6b083649e975a0e574fb8a4058/static/images/spinnnaker/manual.png -------------------------------------------------------------------------------- /static/images/spinnnaker/pipeline.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/eks-workshop/2f9d29ed3f82ed6b083649e975a0e574fb8a4058/static/images/spinnnaker/pipeline.png -------------------------------------------------------------------------------- /static/images/spinnnaker/pipelines.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/eks-workshop/2f9d29ed3f82ed6b083649e975a0e574fb8a4058/static/images/spinnnaker/pipelines.png -------------------------------------------------------------------------------- /static/images/spinnnaker/proddetail.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/eks-workshop/2f9d29ed3f82ed6b083649e975a0e574fb8a4058/static/images/spinnnaker/proddetail.png -------------------------------------------------------------------------------- /static/images/spinnnaker/s3bucket.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/eks-workshop/2f9d29ed3f82ed6b083649e975a0e574fb8a4058/static/images/spinnnaker/s3bucket.png -------------------------------------------------------------------------------- /static/images/spinnnaker/s3bucketdetail.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/eks-workshop/2f9d29ed3f82ed6b083649e975a0e574fb8a4058/static/images/spinnnaker/s3bucketdetail.png -------------------------------------------------------------------------------- /static/images/spinnnaker/step1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/eks-workshop/2f9d29ed3f82ed6b083649e975a0e574fb8a4058/static/images/spinnnaker/step1.png -------------------------------------------------------------------------------- /static/images/spinnnaker/step2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/eks-workshop/2f9d29ed3f82ed6b083649e975a0e574fb8a4058/static/images/spinnnaker/step2.png -------------------------------------------------------------------------------- /static/images/spinnnaker/step3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/eks-workshop/2f9d29ed3f82ed6b083649e975a0e574fb8a4058/static/images/spinnnaker/step3.png -------------------------------------------------------------------------------- /static/images/spinnnaker/test.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/eks-workshop/2f9d29ed3f82ed6b083649e975a0e574fb8a4058/static/images/spinnnaker/test.png -------------------------------------------------------------------------------- /static/images/spinnnaker/test2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/eks-workshop/2f9d29ed3f82ed6b083649e975a0e574fb8a4058/static/images/spinnnaker/test2.png -------------------------------------------------------------------------------- /static/images/spinnnaker/test3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/eks-workshop/2f9d29ed3f82ed6b083649e975a0e574fb8a4058/static/images/spinnnaker/test3.png -------------------------------------------------------------------------------- /static/images/spinnnaker/test4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/eks-workshop/2f9d29ed3f82ed6b083649e975a0e574fb8a4058/static/images/spinnnaker/test4.png -------------------------------------------------------------------------------- /static/images/spinnnaker/test5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/eks-workshop/2f9d29ed3f82ed6b083649e975a0e574fb8a4058/static/images/spinnnaker/test5.png -------------------------------------------------------------------------------- /static/images/spinnnaker/test6.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/eks-workshop/2f9d29ed3f82ed6b083649e975a0e574fb8a4058/static/images/spinnnaker/test6.png -------------------------------------------------------------------------------- /static/images/spinnnaker/test7.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/eks-workshop/2f9d29ed3f82ed6b083649e975a0e574fb8a4058/static/images/spinnnaker/test7.png -------------------------------------------------------------------------------- /static/images/spinnnaker/trigger.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/eks-workshop/2f9d29ed3f82ed6b083649e975a0e574fb8a4058/static/images/spinnnaker/trigger.png -------------------------------------------------------------------------------- /static/images/spinnnaker/ui.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/eks-workshop/2f9d29ed3f82ed6b083649e975a0e574fb8a4058/static/images/spinnnaker/ui.png -------------------------------------------------------------------------------- /static/images/spotworkers/asg_configuration.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/eks-workshop/2f9d29ed3f82ed6b083649e975a0e574fb8a4058/static/images/spotworkers/asg_configuration.png -------------------------------------------------------------------------------- /static/images/spotworkers/instance_taints.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/eks-workshop/2f9d29ed3f82ed6b083649e975a0e574fb8a4058/static/images/spotworkers/instance_taints.png -------------------------------------------------------------------------------- /static/images/spotworkers/rebalance_recommendation.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/eks-workshop/2f9d29ed3f82ed6b083649e975a0e574fb8a4058/static/images/spotworkers/rebalance_recommendation.png -------------------------------------------------------------------------------- /static/images/spotworkers/spot_diagram.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/eks-workshop/2f9d29ed3f82ed6b083649e975a0e574fb8a4058/static/images/spotworkers/spot_diagram.png -------------------------------------------------------------------------------- /static/images/spotworkers/spot_diagram2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/eks-workshop/2f9d29ed3f82ed6b083649e975a0e574fb8a4058/static/images/spotworkers/spot_diagram2.png -------------------------------------------------------------------------------- /static/images/spotworkers/spot_get_ds.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/eks-workshop/2f9d29ed3f82ed6b083649e975a0e574fb8a4058/static/images/spotworkers/spot_get_ds.png -------------------------------------------------------------------------------- /static/images/spotworkers/spot_get_nodes.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/eks-workshop/2f9d29ed3f82ed6b083649e975a0e574fb8a4058/static/images/spotworkers/spot_get_nodes.png -------------------------------------------------------------------------------- /static/images/spotworkers/spot_get_od.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/eks-workshop/2f9d29ed3f82ed6b083649e975a0e574fb8a4058/static/images/spotworkers/spot_get_od.png -------------------------------------------------------------------------------- /static/images/spotworkers/spot_get_spot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/eks-workshop/2f9d29ed3f82ed6b083649e975a0e574fb8a4058/static/images/spotworkers/spot_get_spot.png -------------------------------------------------------------------------------- /static/images/spotworkers/spot_instance_replacement.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/eks-workshop/2f9d29ed3f82ed6b083649e975a0e574fb8a4058/static/images/spotworkers/spot_instance_replacement.png -------------------------------------------------------------------------------- /static/images/spotworkers/spot_nodegroup_arch.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/eks-workshop/2f9d29ed3f82ed6b083649e975a0e574fb8a4058/static/images/spotworkers/spot_nodegroup_arch.png -------------------------------------------------------------------------------- /static/images/spotworkers/spot_rebalance_recommendation.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/eks-workshop/2f9d29ed3f82ed6b083649e975a0e574fb8a4058/static/images/spotworkers/spot_rebalance_recommendation.png -------------------------------------------------------------------------------- /static/images/statefulset/ebs_volume.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/eks-workshop/2f9d29ed3f82ed6b083649e975a0e574fb8a4058/static/images/statefulset/ebs_volume.png -------------------------------------------------------------------------------- /static/images/static-site.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/eks-workshop/2f9d29ed3f82ed6b083649e975a0e574fb8a4058/static/images/static-site.png -------------------------------------------------------------------------------- /static/images/storefront-application.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/eks-workshop/2f9d29ed3f82ed6b083649e975a0e574fb8a4058/static/images/storefront-application.png -------------------------------------------------------------------------------- /static/images/tigera-logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/eks-workshop/2f9d29ed3f82ed6b083649e975a0e574fb8a4058/static/images/tigera-logo.png -------------------------------------------------------------------------------- /static/images/tsce-cloudwatch-logs.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/eks-workshop/2f9d29ed3f82ed6b083649e975a0e574fb8a4058/static/images/tsce-cloudwatch-logs.png -------------------------------------------------------------------------------- /static/images/tsce-cloudwatch-metrics.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/eks-workshop/2f9d29ed3f82ed6b083649e975a0e574fb8a4058/static/images/tsce-cloudwatch-metrics.png -------------------------------------------------------------------------------- /static/images/weave_flux/cloudformation_stack.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/eks-workshop/2f9d29ed3f82ed6b083649e975a0e574fb8a4058/static/images/weave_flux/cloudformation_stack.png -------------------------------------------------------------------------------- /static/images/weave_flux/cloudformation_stack_creating.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/eks-workshop/2f9d29ed3f82ed6b083649e975a0e574fb8a4058/static/images/weave_flux/cloudformation_stack_creating.png -------------------------------------------------------------------------------- /static/images/weave_flux/codepipeline_details.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/eks-workshop/2f9d29ed3f82ed6b083649e975a0e574fb8a4058/static/images/weave_flux/codepipeline_details.png -------------------------------------------------------------------------------- /static/images/weave_flux/github_copy_access.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/eks-workshop/2f9d29ed3f82ed6b083649e975a0e574fb8a4058/static/images/weave_flux/github_copy_access.png -------------------------------------------------------------------------------- /static/images/weave_flux/github_create_k8s.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/eks-workshop/2f9d29ed3f82ed6b083649e975a0e574fb8a4058/static/images/weave_flux/github_create_k8s.png -------------------------------------------------------------------------------- /static/images/weave_flux/github_create_sample_app.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/eks-workshop/2f9d29ed3f82ed6b083649e975a0e574fb8a4058/static/images/weave_flux/github_create_sample_app.png -------------------------------------------------------------------------------- /static/images/weave_flux/github_token_name.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/eks-workshop/2f9d29ed3f82ed6b083649e975a0e574fb8a4058/static/images/weave_flux/github_token_name.png -------------------------------------------------------------------------------- /static/images/weave_flux/gitops_workflow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/eks-workshop/2f9d29ed3f82ed6b083649e975a0e574fb8a4058/static/images/weave_flux/gitops_workflow.png -------------------------------------------------------------------------------- /static/images/windows/eks_cluster_win_linux.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/eks-workshop/2f9d29ed3f82ed6b083649e975a0e574fb8a4058/static/images/windows/eks_cluster_win_linux.png -------------------------------------------------------------------------------- /static/images/windows/ssm_connect.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/eks-workshop/2f9d29ed3f82ed6b083649e975a0e574fb8a4058/static/images/windows/ssm_connect.png -------------------------------------------------------------------------------- /static/images/windows/windows_iis_welcome.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/eks-workshop/2f9d29ed3f82ed6b083649e975a0e574fb8a4058/static/images/windows/windows_iis_welcome.png -------------------------------------------------------------------------------- /static/images/windows/windows_nodes.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/eks-workshop/2f9d29ed3f82ed6b083649e975a0e574fb8a4058/static/images/windows/windows_nodes.png -------------------------------------------------------------------------------- /static/images/windows/windows_select_node.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/eks-workshop/2f9d29ed3f82ed6b083649e975a0e574fb8a4058/static/images/windows/windows_select_node.png -------------------------------------------------------------------------------- /static/images/x-ray/daemon_status.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/eks-workshop/2f9d29ed3f82ed6b083649e975a0e574fb8a4058/static/images/x-ray/daemon_status.png -------------------------------------------------------------------------------- /static/images/x-ray/overview.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/eks-workshop/2f9d29ed3f82ed6b083649e975a0e574fb8a4058/static/images/x-ray/overview.png -------------------------------------------------------------------------------- /static/images/x-ray/service_map.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/eks-workshop/2f9d29ed3f82ed6b083649e975a0e574fb8a4058/static/images/x-ray/service_map.png -------------------------------------------------------------------------------- /static/images/x-ray/trace.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/eks-workshop/2f9d29ed3f82ed6b083649e975a0e574fb8a4058/static/images/x-ray/trace.png -------------------------------------------------------------------------------- /static/images/x-ray/traces.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/eks-workshop/2f9d29ed3f82ed6b083649e975a0e574fb8a4058/static/images/x-ray/traces.png -------------------------------------------------------------------------------- /static/images/zone-based-arch.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aws-samples/eks-workshop/2f9d29ed3f82ed6b083649e975a0e574fb8a4058/static/images/zone-based-arch.png -------------------------------------------------------------------------------- /static/sw.js: -------------------------------------------------------------------------------- 1 | /** An empty service worker! */ 2 | self.addEventListener('fetch', function(event) { 3 | }); 4 | -------------------------------------------------------------------------------- /templates/example1.yml: -------------------------------------------------------------------------------- 1 | example1 2 | -------------------------------------------------------------------------------- /templates/example2.yml: -------------------------------------------------------------------------------- 1 | example2 2 | -------------------------------------------------------------------------------- /templates/example3.yml: -------------------------------------------------------------------------------- 1 | example3 2 | --------------------------------------------------------------------------------