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