Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Updating guide’s content to use the Liberty AKS portal for creating cluster, resource group, and container #129

Open
wants to merge 44 commits into
base: staging
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
44 commits
Select commit Hold shift + click to select a range
af54bfe
updating guide’s content to use the liberty AKS portal for creating c…
Ruilin-Ma Jul 22, 2024
53f187d
Merge branch 'liberty-aks-update' of https://github.com/OpenLiberty/g…
Ruilin-Ma Jul 22, 2024
b604918
lint correction & minor content fix
Ruilin-Ma Jul 22, 2024
0b9fbd7
Resolve image display issue & content improvement
Ruilin-Ma Jul 22, 2024
1f43f32
Image update & Restruct the content layout
Ruilin-Ma Jul 22, 2024
e4f81ab
Revise the subtitle
Ruilin-Ma Jul 22, 2024
2297340
Guide's content improvement & Image improvement
Ruilin-Ma Jul 23, 2024
6066162
Fixed typo
Ruilin-Ma Jul 23, 2024
991150b
Comments addressed
Ruilin-Ma Aug 6, 2024
792c41d
Dependabot Bump (#134)
gkwan-ibm Aug 7, 2024
5d8dd31
Improving the image quality and content based on the comments
Ruilin-Ma Aug 8, 2024
598fdff
Merge branch 'liberty-aks-update' of https://github.com/OpenLiberty/g…
Ruilin-Ma Aug 8, 2024
ba1e217
Simplify the content of the Deployment section & replace cluster name…
Ruilin-Ma Aug 9, 2024
40eb803
Content improvement
Ruilin-Ma Aug 9, 2024
3742e79
example output update
Ruilin-Ma Aug 9, 2024
1ea940e
content improvement
Ruilin-Ma Aug 9, 2024
3c1cf06
content improvement
Ruilin-Ma Aug 9, 2024
c514694
adding a command line to obtain [registry-name] && addressing comments
Ruilin-Ma Aug 9, 2024
318cb91
content improvement
Ruilin-Ma Aug 9, 2024
736417e
revert unwanted changes
Ruilin-Ma Aug 9, 2024
17a1a22
Addressing comment & improving the instruction for replacing [registr…
Ruilin-Ma Aug 13, 2024
488b50f
Update README.adoc
gkwan-ibm Aug 14, 2024
8da219b
Update README.adoc
gkwan-ibm Aug 14, 2024
dee8315
Merge pull request #135 from OpenLiberty/gkwan-dev-content-review
Ruilin-Ma Aug 14, 2024
b94df86
Merge branch 'staging' into liberty-aks-update
gkwan-ibm Sep 4, 2024
f405f42
Addressed Laura's comments and update the guide to use OL operator to…
shin19991207 Oct 2, 2024
f237603
Update deploy.yaml
shin19991207 Oct 2, 2024
9f2b7ee
Update README.adoc
shin19991207 Oct 2, 2024
0e8893e
Update deploy.yaml
shin19991207 Oct 2, 2024
67d8c8e
Update README.adoc
shin19991207 Oct 2, 2024
e3ce362
Merge branch 'staging' into liberty-aks-update
gkwan-ibm Oct 2, 2024
f4ab732
Update test.yml
shin19991207 Oct 2, 2024
5d87df5
Addressed dev content review
shin19991207 Oct 7, 2024
8e11e35
Update README.adoc
shin19991207 Oct 7, 2024
6651be8
Fixed superlinter error
shin19991207 Oct 7, 2024
ac300fa
Update README.adoc
shin19991207 Oct 7, 2024
be61c30
Update README.adoc
shin19991207 Oct 7, 2024
e43fdc0
Update README.adoc
shin19991207 Oct 7, 2024
44189dd
Update README.adoc
shin19991207 Oct 7, 2024
b6607c5
Update README.adoc
shin19991207 Oct 7, 2024
0de0e77
Update README.adoc
shin19991207 Oct 7, 2024
97edd43
Update README.adoc
shin19991207 Oct 7, 2024
a999498
Update README.adoc
gkwan-ibm Oct 8, 2024
8677cc3
Merge branch 'staging' into liberty-aks-update
gkwan-ibm Nov 4, 2024
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
1 change: 1 addition & 0 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -26,6 +26,7 @@ jobs:
uses: github/super-linter@latest
env:
VALIDATE_ALL_CODEBASE: false
VALIDATE_KUBERNETES_KUBEVAL: false
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
LINTER_RULES_PATH: ./tools/pr-checker/linters/
DEFAULT_BRANCH: prod
Expand Down
372 changes: 161 additions & 211 deletions README.adoc

Large diffs are not rendered by default.

Binary file added assets/AKS_tool_create_resource_group.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added assets/Locate_ACR.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added assets/Region_Selection.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
43 changes: 43 additions & 0 deletions finish/deploy.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,43 @@
apiVersion: apps.openliberty.io/v1
# tag::sysCr[]
kind: OpenLibertyApplication
# end::sysCr[]
metadata:
name: system-deployment
labels:
app: system
spec:
# tag::sysImage[]
applicationImage: "[registry-server]/system:1.0-SNAPSHOT"
# end::sysImage[]
service:
# tag::sysLoadBalancer[]
type: LoadBalancer
# end::sysLoadBalancer[]
port: 9080
expose: true
# tag::sysSecret[]
pullSecret: guidesecret
# end::sysSecret[]
---
apiVersion: apps.openliberty.io/v1
# tag::invCr[]
kind: OpenLibertyApplication
# end::invCr[]
metadata:
name: inventory-deployment
labels:
app: inventory
spec:
# tag::invImage[]
applicationImage: "[registry-server]/inventory:1.0-SNAPSHOT"
# end::invImage[]
service:
# tag::invLoadBalancer[]
type: LoadBalancer
# end::invLoadBalancer[]
port: 9081
expose: true
# tag::invSecret[]
pullSecret: guidesecret
# end::invSecret[]
83 changes: 0 additions & 83 deletions finish/kubernetes.yaml

This file was deleted.

27 changes: 27 additions & 0 deletions start/deploy.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,27 @@
apiVersion: apps.openliberty.io/v1
kind: OpenLibertyApplication
metadata:
name: system-deployment
labels:
app: system
spec:
applicationImage: "[registry-server]/system:1.0-SNAPSHOT"
service:
type: LoadBalancer
port: 9080
expose: true
pullSecret: guidesecret
---
apiVersion: apps.openliberty.io/v1
kind: OpenLibertyApplication
metadata:
name: inventory-deployment
labels:
app: inventory
spec:
applicationImage: "[registry-server]/inventory:1.0-SNAPSHOT"
service:
type: LoadBalancer
port: 9081
expose: true
pullSecret: guidesecret
71 changes: 0 additions & 71 deletions start/kubernetes.yaml

This file was deleted.

Loading