https://github.com/nathancordeiro/verizon-cce-job-simulation
Tasks of Verizon Cloud Computing Engineer role simulation
https://github.com/nathancordeiro/verizon-cce-job-simulation
Last synced: 6 months ago
JSON representation
Tasks of Verizon Cloud Computing Engineer role simulation
- Host: GitHub
- URL: https://github.com/nathancordeiro/verizon-cce-job-simulation
- Owner: NathanCordeiro
- Created: 2025-02-02T06:41:32.000Z (8 months ago)
- Default Branch: main
- Last Pushed: 2025-02-02T06:44:01.000Z (8 months ago)
- Last Synced: 2025-02-02T07:25:54.337Z (8 months ago)
- Language: Python
- Size: 0 Bytes
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Verizon-CCE-job-simulation
Tasks of Verizon Cloud Computing Engineer role simulation## Sasha Task 1
### Testing for 3 cloud native traits
- ***Redundancy:*** Kill an instance (VM or container) of the app while it's running, and check if the app continues to work and provide service. Note: This is to test that the system is stable enough for parts of its underlying resources to fail and not affect up time.
- ***Resiliency:*** Kill an instance (VM or container) of the app while it's running, and check if the instance (VM or container) restarts/recovers with no human intervention, and continues to provide service. Note: This is to test the ability of the system to recover from failures and continue to function with minimal interaction.
- ***Least-privilege:*** Check that the app is not using admin or root level access. Note: This is to ensure that the application is secure enough so that should there be a security breach it will likely be limited due to the restricted access and permission of the user running the external facing application.How to test
```text
You can use scale [NUMBER] to scale the application up or down.You can use kill [POD_NAME] to kill off a certain pod.
You can use get-user
```