Questions
- True or false: A pipeline must be implemented to make Kubernetes work.
A. True
B. False
- What are the minimum steps of a pipeline?
A. Build, scan, test, and deploy
B. Build and deploy
C. Scan, test, deploy, and build
D. None of the above
- What is GitOps?
A. Running GitLab on Kubernetes
B. Using Git as an authoritative source for operations configuration
C. A silly marketing term
D. A product from a new start-up
- What is the standard for writing pipelines?
A. All pipelines should be written in YAML.
B. There are no standards; every project and vendor has its own implementation.
C. JSON combined with Go.
D. Rust.
- How do you deploy a new instance of a container in a GitOps model?
A. Use
kubectl
to update theDeployment
orStatefulSet
in the namespace.B. Update the
Deployment
orStatefulSet
manifest in Git, letting the GitOps controller update the objects in Kubernetes.C. Submit a ticket that someone in operations needs to act on.
D. None of the above.
- True or false: All...