├── .gitignore ├── README.md ├── ccloud_lib.py ├── lab1.md ├── lab2.md ├── notification_client.md ├── prereq.md ├── push2ios.py ├── schema ├── schema-shoe_promotions-key-v1.avsc └── schema-shoe_promotions-value-v1.avsc ├── terraform-complete ├── .gitignore ├── 00_create_client.properties.sh ├── README.md ├── cflt_cloud.tf ├── cflt_connectors.tf ├── cflt_flink_sql.tf ├── img │ ├── Flink_Hands-on_Workshop_Complete.png │ ├── add-query-box.png │ ├── catalog-and-database-dropdown.png │ ├── cluster.png │ ├── confluent-logo-300-2.png │ ├── connectors.png │ ├── deployment_diagram.png │ ├── environment.png │ ├── flink_jobs.png │ ├── flink_sql_diagram.png │ ├── flinkpool.png │ ├── notification_iphone.png │ ├── schema_show_products.png │ ├── shoe_products.png │ ├── sql_worksheet.png │ ├── sqlworksheet.png │ ├── streamlineage.png │ ├── terraform_deployment.png │ ├── topic_list.png │ ├── topics.png │ └── topicviewer_schema_show_products.png ├── output.tf ├── providers.tf └── vars.tf └── terraform ├── .gitignore ├── README.md ├── cflt_cloud.tf ├── cflt_connectors.tf ├── img ├── Flink_Hands-on_Workshop_Complete.png ├── add-query-box.png ├── catalog-and-database-dropdown.png ├── certification_error.png ├── cluster.png ├── confluent-logo-300-2.png ├── connectors.png ├── dataPortal1.png ├── dataPortal2.png ├── dataportal.png ├── deployment_diagram.png ├── environment.png ├── flinkCreateWorkspace.png ├── flink_jobs.png ├── flink_sql_diagram.png ├── flinkpool.png ├── notification_iphone.png ├── prereq_video.png ├── query-result-1.png ├── schema_show_products.png ├── shoe_products.png ├── show_tables.png ├── sqlWorksheetDetail.png ├── sqlWorkspace_showCreated.png ├── sql_worksheet.png ├── sqlworksheet.png ├── streamlineage.png ├── terraform_deployment.png ├── topics.png └── topicviewer_schema_show_products.png ├── output.tf ├── providers.tf └── vars.tf /.gitignore: -------------------------------------------------------------------------------- 1 | bin/ 2 | hashicorp.gpg 3 | *.tfstate 4 | client.properties 5 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/griga23/shoe-store/HEAD/README.md -------------------------------------------------------------------------------- /ccloud_lib.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/griga23/shoe-store/HEAD/ccloud_lib.py -------------------------------------------------------------------------------- /lab1.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/griga23/shoe-store/HEAD/lab1.md -------------------------------------------------------------------------------- /lab2.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/griga23/shoe-store/HEAD/lab2.md -------------------------------------------------------------------------------- /notification_client.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/griga23/shoe-store/HEAD/notification_client.md -------------------------------------------------------------------------------- /prereq.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/griga23/shoe-store/HEAD/prereq.md -------------------------------------------------------------------------------- /push2ios.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/griga23/shoe-store/HEAD/push2ios.py -------------------------------------------------------------------------------- /schema/schema-shoe_promotions-key-v1.avsc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/griga23/shoe-store/HEAD/schema/schema-shoe_promotions-key-v1.avsc -------------------------------------------------------------------------------- /schema/schema-shoe_promotions-value-v1.avsc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/griga23/shoe-store/HEAD/schema/schema-shoe_promotions-value-v1.avsc -------------------------------------------------------------------------------- /terraform-complete/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/griga23/shoe-store/HEAD/terraform-complete/.gitignore -------------------------------------------------------------------------------- /terraform-complete/00_create_client.properties.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/griga23/shoe-store/HEAD/terraform-complete/00_create_client.properties.sh -------------------------------------------------------------------------------- /terraform-complete/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/griga23/shoe-store/HEAD/terraform-complete/README.md -------------------------------------------------------------------------------- /terraform-complete/cflt_cloud.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/griga23/shoe-store/HEAD/terraform-complete/cflt_cloud.tf -------------------------------------------------------------------------------- /terraform-complete/cflt_connectors.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/griga23/shoe-store/HEAD/terraform-complete/cflt_connectors.tf -------------------------------------------------------------------------------- /terraform-complete/cflt_flink_sql.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/griga23/shoe-store/HEAD/terraform-complete/cflt_flink_sql.tf -------------------------------------------------------------------------------- /terraform-complete/img/Flink_Hands-on_Workshop_Complete.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/griga23/shoe-store/HEAD/terraform-complete/img/Flink_Hands-on_Workshop_Complete.png -------------------------------------------------------------------------------- /terraform-complete/img/add-query-box.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/griga23/shoe-store/HEAD/terraform-complete/img/add-query-box.png -------------------------------------------------------------------------------- /terraform-complete/img/catalog-and-database-dropdown.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/griga23/shoe-store/HEAD/terraform-complete/img/catalog-and-database-dropdown.png -------------------------------------------------------------------------------- /terraform-complete/img/cluster.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/griga23/shoe-store/HEAD/terraform-complete/img/cluster.png -------------------------------------------------------------------------------- /terraform-complete/img/confluent-logo-300-2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/griga23/shoe-store/HEAD/terraform-complete/img/confluent-logo-300-2.png -------------------------------------------------------------------------------- /terraform-complete/img/connectors.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/griga23/shoe-store/HEAD/terraform-complete/img/connectors.png -------------------------------------------------------------------------------- /terraform-complete/img/deployment_diagram.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/griga23/shoe-store/HEAD/terraform-complete/img/deployment_diagram.png -------------------------------------------------------------------------------- /terraform-complete/img/environment.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/griga23/shoe-store/HEAD/terraform-complete/img/environment.png -------------------------------------------------------------------------------- /terraform-complete/img/flink_jobs.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/griga23/shoe-store/HEAD/terraform-complete/img/flink_jobs.png -------------------------------------------------------------------------------- /terraform-complete/img/flink_sql_diagram.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/griga23/shoe-store/HEAD/terraform-complete/img/flink_sql_diagram.png -------------------------------------------------------------------------------- /terraform-complete/img/flinkpool.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/griga23/shoe-store/HEAD/terraform-complete/img/flinkpool.png -------------------------------------------------------------------------------- /terraform-complete/img/notification_iphone.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/griga23/shoe-store/HEAD/terraform-complete/img/notification_iphone.png -------------------------------------------------------------------------------- /terraform-complete/img/schema_show_products.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/griga23/shoe-store/HEAD/terraform-complete/img/schema_show_products.png -------------------------------------------------------------------------------- /terraform-complete/img/shoe_products.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/griga23/shoe-store/HEAD/terraform-complete/img/shoe_products.png -------------------------------------------------------------------------------- /terraform-complete/img/sql_worksheet.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/griga23/shoe-store/HEAD/terraform-complete/img/sql_worksheet.png -------------------------------------------------------------------------------- /terraform-complete/img/sqlworksheet.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/griga23/shoe-store/HEAD/terraform-complete/img/sqlworksheet.png -------------------------------------------------------------------------------- /terraform-complete/img/streamlineage.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/griga23/shoe-store/HEAD/terraform-complete/img/streamlineage.png -------------------------------------------------------------------------------- /terraform-complete/img/terraform_deployment.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/griga23/shoe-store/HEAD/terraform-complete/img/terraform_deployment.png -------------------------------------------------------------------------------- /terraform-complete/img/topic_list.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/griga23/shoe-store/HEAD/terraform-complete/img/topic_list.png -------------------------------------------------------------------------------- /terraform-complete/img/topics.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/griga23/shoe-store/HEAD/terraform-complete/img/topics.png -------------------------------------------------------------------------------- /terraform-complete/img/topicviewer_schema_show_products.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/griga23/shoe-store/HEAD/terraform-complete/img/topicviewer_schema_show_products.png -------------------------------------------------------------------------------- /terraform-complete/output.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/griga23/shoe-store/HEAD/terraform-complete/output.tf -------------------------------------------------------------------------------- /terraform-complete/providers.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/griga23/shoe-store/HEAD/terraform-complete/providers.tf -------------------------------------------------------------------------------- /terraform-complete/vars.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/griga23/shoe-store/HEAD/terraform-complete/vars.tf -------------------------------------------------------------------------------- /terraform/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/griga23/shoe-store/HEAD/terraform/.gitignore -------------------------------------------------------------------------------- /terraform/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/griga23/shoe-store/HEAD/terraform/README.md -------------------------------------------------------------------------------- /terraform/cflt_cloud.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/griga23/shoe-store/HEAD/terraform/cflt_cloud.tf -------------------------------------------------------------------------------- /terraform/cflt_connectors.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/griga23/shoe-store/HEAD/terraform/cflt_connectors.tf -------------------------------------------------------------------------------- /terraform/img/Flink_Hands-on_Workshop_Complete.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/griga23/shoe-store/HEAD/terraform/img/Flink_Hands-on_Workshop_Complete.png -------------------------------------------------------------------------------- /terraform/img/add-query-box.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/griga23/shoe-store/HEAD/terraform/img/add-query-box.png -------------------------------------------------------------------------------- /terraform/img/catalog-and-database-dropdown.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/griga23/shoe-store/HEAD/terraform/img/catalog-and-database-dropdown.png -------------------------------------------------------------------------------- /terraform/img/certification_error.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/griga23/shoe-store/HEAD/terraform/img/certification_error.png -------------------------------------------------------------------------------- /terraform/img/cluster.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/griga23/shoe-store/HEAD/terraform/img/cluster.png -------------------------------------------------------------------------------- /terraform/img/confluent-logo-300-2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/griga23/shoe-store/HEAD/terraform/img/confluent-logo-300-2.png -------------------------------------------------------------------------------- /terraform/img/connectors.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/griga23/shoe-store/HEAD/terraform/img/connectors.png -------------------------------------------------------------------------------- /terraform/img/dataPortal1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/griga23/shoe-store/HEAD/terraform/img/dataPortal1.png -------------------------------------------------------------------------------- /terraform/img/dataPortal2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/griga23/shoe-store/HEAD/terraform/img/dataPortal2.png -------------------------------------------------------------------------------- /terraform/img/dataportal.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/griga23/shoe-store/HEAD/terraform/img/dataportal.png -------------------------------------------------------------------------------- /terraform/img/deployment_diagram.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/griga23/shoe-store/HEAD/terraform/img/deployment_diagram.png -------------------------------------------------------------------------------- /terraform/img/environment.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/griga23/shoe-store/HEAD/terraform/img/environment.png -------------------------------------------------------------------------------- /terraform/img/flinkCreateWorkspace.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/griga23/shoe-store/HEAD/terraform/img/flinkCreateWorkspace.png -------------------------------------------------------------------------------- /terraform/img/flink_jobs.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/griga23/shoe-store/HEAD/terraform/img/flink_jobs.png -------------------------------------------------------------------------------- /terraform/img/flink_sql_diagram.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/griga23/shoe-store/HEAD/terraform/img/flink_sql_diagram.png -------------------------------------------------------------------------------- /terraform/img/flinkpool.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/griga23/shoe-store/HEAD/terraform/img/flinkpool.png -------------------------------------------------------------------------------- /terraform/img/notification_iphone.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/griga23/shoe-store/HEAD/terraform/img/notification_iphone.png -------------------------------------------------------------------------------- /terraform/img/prereq_video.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/griga23/shoe-store/HEAD/terraform/img/prereq_video.png -------------------------------------------------------------------------------- /terraform/img/query-result-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/griga23/shoe-store/HEAD/terraform/img/query-result-1.png -------------------------------------------------------------------------------- /terraform/img/schema_show_products.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/griga23/shoe-store/HEAD/terraform/img/schema_show_products.png -------------------------------------------------------------------------------- /terraform/img/shoe_products.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/griga23/shoe-store/HEAD/terraform/img/shoe_products.png -------------------------------------------------------------------------------- /terraform/img/show_tables.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/griga23/shoe-store/HEAD/terraform/img/show_tables.png -------------------------------------------------------------------------------- /terraform/img/sqlWorksheetDetail.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/griga23/shoe-store/HEAD/terraform/img/sqlWorksheetDetail.png -------------------------------------------------------------------------------- /terraform/img/sqlWorkspace_showCreated.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/griga23/shoe-store/HEAD/terraform/img/sqlWorkspace_showCreated.png -------------------------------------------------------------------------------- /terraform/img/sql_worksheet.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/griga23/shoe-store/HEAD/terraform/img/sql_worksheet.png -------------------------------------------------------------------------------- /terraform/img/sqlworksheet.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/griga23/shoe-store/HEAD/terraform/img/sqlworksheet.png -------------------------------------------------------------------------------- /terraform/img/streamlineage.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/griga23/shoe-store/HEAD/terraform/img/streamlineage.png -------------------------------------------------------------------------------- /terraform/img/terraform_deployment.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/griga23/shoe-store/HEAD/terraform/img/terraform_deployment.png -------------------------------------------------------------------------------- /terraform/img/topics.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/griga23/shoe-store/HEAD/terraform/img/topics.png -------------------------------------------------------------------------------- /terraform/img/topicviewer_schema_show_products.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/griga23/shoe-store/HEAD/terraform/img/topicviewer_schema_show_products.png -------------------------------------------------------------------------------- /terraform/output.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/griga23/shoe-store/HEAD/terraform/output.tf -------------------------------------------------------------------------------- /terraform/providers.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/griga23/shoe-store/HEAD/terraform/providers.tf -------------------------------------------------------------------------------- /terraform/vars.tf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/griga23/shoe-store/HEAD/terraform/vars.tf --------------------------------------------------------------------------------