Skip to content

Commit

Permalink
fixes typo
Browse files Browse the repository at this point in the history
  • Loading branch information
Skybound1 committed Dec 6, 2023
1 parent 0f6dac3 commit 11caed3
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion icekube/models/pod.py
Original file line number Diff line number Diff line change
Expand Up @@ -95,7 +95,7 @@ def capabilities(self) -> List[str]:
capabilities = set()

for container in self.containers:
security_context = container.get("security_context") or {}
security_context = container.get("securityContext") or {}
caps = security_context.get("capabilities") or {}
addl = caps.get("add") or []
addl = [x.upper() for x in addl]
Expand Down

0 comments on commit 11caed3

Please sign in to comment.