-
Notifications
You must be signed in to change notification settings - Fork 201
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Kubernetes Deployment manifest for Atomic Red tests (#177)
* Create k8s-deployment.yaml * Update k8s-deployment.yaml Renamed the container image from issif/atomic-red:latest to redcanary/invoke-atomicredteam As per the request of Hare Sudhan * fixing pr checks --------- Co-authored-by: Hare Sudhan <[email protected]>
- Loading branch information
1 parent
4e30b71
commit 70f8d47
Showing
2 changed files
with
27 additions
and
1 deletion.
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,26 @@ | ||
apiVersion: apps/v1 | ||
kind: Deployment | ||
metadata: | ||
name: atomicred | ||
namespace: atomic-red | ||
labels: | ||
app: atomicred | ||
spec: | ||
replicas: 1 | ||
selector: | ||
matchLabels: | ||
app: atomicred | ||
template: | ||
metadata: | ||
labels: | ||
app: atomicred | ||
spec: | ||
containers: | ||
- name: atomicred | ||
image: redcanary/invoke-atomicredteam | ||
imagePullPolicy: "IfNotPresent" | ||
command: ["sleep", "3560d"] | ||
securityContext: | ||
privileged: true | ||
nodeSelector: | ||
kubernetes.io/os: linux |