Skip to content
This repository was archived by the owner on Jul 17, 2024. It is now read-only.
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
11 changes: 7 additions & 4 deletions k8s-daemonset.yml
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ metadata:
name: inference-daemon
namespace: default
---
apiVersion: rbac.authorization.k8s.io/v1beta1
apiVersion: rbac.authorization.k8s.io/v1
kind: ClusterRoleBinding
metadata:
name: inference-daemon
Expand All @@ -34,11 +34,14 @@ subjects:
name: inference-daemon
namespace: default
---
apiVersion: extensions/v1beta1
apiVersion: apps/v1
kind: DaemonSet
metadata:
name: inference-daemon
spec:
selector:
matchLabels:
app: inference-daemon
updateStrategy:
type: RollingUpdate
template:
Expand All @@ -59,9 +62,9 @@ spec:
imagePullPolicy: Always
env:
- name: SQS_TASK_QUEUE
value: task-queue-eks-a
value: task-queue-eks-ei-blog
- name: SQS_TASK_COMPLETED_QUEUE
value: task-completed-queue-eks-a
value: task-completed-queue-eks-ei-blog
resources:
requests:
memory: 1024Mi
Expand Down