-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #7 from f5devcentral/dev
Dev
- Loading branch information
Showing
26 changed files
with
519 additions
and
185 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,14 @@ | ||
<div href="/" class="d-flex align-items-center pb-3 mb-3 link-dark text-decoration-none"> | ||
<img src="/static/arch.png" width="300px" height="auto" alt="arch"> | ||
</div> | ||
|
||
# **Architecture** | ||
|
||
<div href="/" class="d-flex align-items-center pb-3 mb-3 link-dark text-decoration-none border-bottom"></div> | ||
|
||
|
||
<div class="err"> | ||
<a href="/" class="d-flex align-items-center pb-3 mb-3 link-dark text-decoration-none"> | ||
<img src="/static/coming-soon.png" alt="Descriptive Text"> | ||
</a> | ||
</div> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,44 @@ | ||
<div href="/" class="d-flex align-items-center pb-3 mb-3 link-dark text-decoration-none"> | ||
<img src="/static/path.png" width="300px" height="auto" alt="intro"> | ||
</div> | ||
|
||
# **Header Manipulation** | ||
|
||
<div href="/" class="d-flex align-items-center pb-3 mb-3 link-dark text-decoration-none border-bottom"></div> | ||
|
||
<div style="height:25px"></div> | ||
|
||
### **Exercise 1: Add/Remove** | ||
|
||
HERE | ||
|
||
<div class="left-aligned-button-container"> | ||
<button id="requestBtn2" class="btn btn-primary">Test Load Balancer</button> | ||
</div> | ||
<div id="result2" class="mt-3"></div> | ||
<script> | ||
document.getElementById('requestBtn2').addEventListener('click', async () => { | ||
const resultDiv = document.getElementById('result2'); | ||
try { | ||
const response = await axios.get('/_lb_azure'); | ||
if(response.data.status === 'success') { | ||
const prettyJson = JSON.stringify(response.data.data, null, 4); | ||
resultDiv.innerHTML = `<pre class="alert alert-success"><code>${prettyJson}</code></pre>`; | ||
} else { | ||
resultDiv.innerHTML = `<div class="alert alert-danger"><b>Request Failed</b></div>`; | ||
} | ||
resultDiv.scrollIntoView({ behavior: 'smooth', block: 'end' }); // Smooth scroll to the resultDiv | ||
} catch (error) { | ||
resultDiv.innerHTML = `<div class="alert alert-danger">Error: ${error.message}</div>`; | ||
resultDiv.scrollIntoView({ behavior: 'smooth', block: 'end' }); // Smooth scroll to the resultDiv | ||
} | ||
}); | ||
</script> | ||
|
||
<div style="height:25px"></div> | ||
|
||
Nice 🚀! If you've completed all the exercises so far, you have a good foundation for how App Connect addresses common L7 MCN scenarios. | ||
In subsequent labs, we'll explore security and observabilty concepts that build on MCN functionality. | ||
Head over to the <a href="/vnet" class="alert-link">Network Connect</a> exercise. | ||
|
||
<div style="height:25px"></div> |
This file was deleted.
Oops, something went wrong.
Oops, something went wrong.