Skip to content
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
28 commits
Select commit Hold shift + click to select a range
58c5c4f
added challenge question for user to retrieve the elb URL
vjsikha Nov 21, 2018
d5097ef
updated the shortcode to fix the launch button for codepipeline
vjsikha Nov 21, 2018
146c6be
Merge branch 'master' into 157-cicd-challenge-question
vjsikha Nov 21, 2018
d490e3a
Merge branch 'master' into 157-cicd-challenge-question
dalbhanj Nov 21, 2018
3c95cf4
Batch Processing (redux) (#133)
buzzsurfr Nov 20, 2018
6ea5e05
Link fixes (#135)
brentley Nov 20, 2018
3e05da7
Tracing with X-Ray module (#132)
rnzsgh Nov 20, 2018
bb010e6
Fix links (#137)
rnzsgh Nov 20, 2018
fcb3f6a
added documentation and examples to demo readiness and liveness probe…
vjsikha Nov 20, 2018
172990c
remove duplicate page (using.md/rolling_back.md) (#140)
brentley Nov 20, 2018
bf439eb
Dynamic Volume Provisioning hyperlink (#141)
nikipat Nov 20, 2018
b83312a
Update _index.md (#144)
oak2278 Nov 20, 2018
7d41d70
Challenge question and answer to Monitoring Chapter (#146)
dalbhanj Nov 20, 2018
781e875
Remove region (#148)
rnzsgh Nov 21, 2018
978bff1
adding a region selector (#154)
brentley Nov 21, 2018
6ded661
Added challenge question to installnginx.md (#145)
trevorrobertsjr Nov 21, 2018
e7b3820
Istiotweaks (#153)
geremyCohen Nov 21, 2018
c6bafee
fixing typo in health checks (#155)
dalbhanj Nov 21, 2018
08e73ea
update Batch cleanup.md (#142)
oak2278 Nov 21, 2018
d38a893
Simplify CFN stack creation (#156)
rnzsgh Nov 21, 2018
93d6ff4
Calico logo, note in StatefulSets -- Test scaling and Batch -- simple…
nikipat Nov 21, 2018
cfafc6d
added challenge question for user to retrieve the elb URL
vjsikha Nov 21, 2018
9ae013c
resolved conflicts after rebasing from master
vjsikha Nov 21, 2018
fda5fbb
added hint to challenge question
vjsikha Nov 21, 2018
6c38f5b
Content review and edits. Added Challenge Questions (#147)
oak2278 Nov 21, 2018
6326204
resolved conflicts
vjsikha Nov 21, 2018
88222ec
Merge branch 'master' into 157-cicd-challenge-question
brentley Nov 21, 2018
9b342ab
Merge branch 'master' into 157-cicd-challenge-question
brentley Nov 21, 2018
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
22 changes: 14 additions & 8 deletions content/codepipeline/change.md
Original file line number Diff line number Diff line change
Expand Up @@ -29,14 +29,20 @@ After you modify and commit your change in GitHub, in approximately one minute y

![CodePiepline Running](/images/codepipeline/codepipeline_building.png)

Once the service is built and delivered, run the following command to get the Elastic Load Balancer (ELB) endpoint and open it in a browser.
If the message is not updated immediately, give Kubernetes some time to deploy the change.
#### Challenge:
**How can we validate the changes and access latest version of the app?**

```
kubectl get services hello-k8s -o wide
```
**HINT:** Which kubectl command will get you the Elastic Load Balancer (ELB) endpoint for this app?

{{% notice info %}}
The EXTERNAL-IP column contains a value that ends with "elb.amazonaws.com" - the full value is the DNS record.
{{% /notice %}}
{{%expand "Expand here to see the solution" %}}

Once the service is built and delivered, we can run the following command to get the Elastic Load Balancer (ELB) endpoint and open it in a browser.
If the message is not updated immediately, give Kubernetes some time to deploy the change.

```
kubectl get services hello-k8s -o wide
```

The EXTERNAL-IP column contains a value that ends with "elb.amazonaws.com" - the full value is the DNS record which can be used to validate/access the app.

{{% /expand %}}
5 changes: 1 addition & 4 deletions content/codepipeline/codepipeline.md
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ Click the **Launch** button to create the CloudFormation stack in the AWS Manage

| Launch template | | |
| ------ |:------:|:--------:|
| CodePipeline & EKS | {{% cf-launch "ci-cd-codepipeline.cfn.yml" "eksws-codepipeline" %}} | {{% cf-download "ci-cd-codepipeline.cfn.yml" %}} |
| CodePipeline & EKS | {{% cf-launch "eksws-codepipeline" "ci-cd-codepipeline.cfn.yml" %}} | {{% cf-download "ci-cd-codepipeline.cfn.yml" %}} |
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

not sure if this also needs to be reverted since reverting the commit in cf-launch?


After the console is open, enter your GitHub username, personal access token (created in previous step), check the acknowledge box and then click the "Create stack" button located at the bottom of the page.

Expand Down Expand Up @@ -67,6 +67,3 @@ This service was configured with a [LoadBalancer](https://kubernetes.io/docs/tas
an [AWS Elastic Load Balancer](https://aws.amazon.com/elasticloadbalancing/) is launched by Kubernetes for the service.
The EXTERNAL-IP column contains a value that ends with "elb.amazonaws.com" - the full value is the DNS address.
{{% /notice %}}



2 changes: 1 addition & 1 deletion layouts/shortcodes/cf-launch.html
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
<a
href="https://console.aws.amazon.com/cloudformation/home?#/stacks/quickcreate?stackName={{ .Get 1 }}&templateURL=https://s3.amazonaws.com/{{ $.Site.Params.template_bucket }}/templates/{{ $.Site.Params.branch }}/{{ .Get 0 }}"
href="https://console.aws.amazon.com/cloudformation/home?#/stacks/create/review?stackName={{ .Get 0 }}&templateURL=https://s3.amazonaws.com/{{ $.Site.Params.template_bucket }}/templates/{{ $.Site.Params.branch }}/{{ .Get 1 }}"
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

I believe this file is part of an earlier version of the codebase, and this diff is reverting back to the older version. Please remove it from this PR.

Copy link
Contributor Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

agreed. confirmed that it's an issue when user is on old version of Cloud Formation console. We will convey that all users must be on the newer version. reverting these changes

target="_blank" class="btn btn-default">
<i class="fas fa-cloud-upload-alt"></i>
Launch
Expand Down