diff --git a/charts/osm/templates/osm-deployment.yaml b/charts/osm/templates/osm-deployment.yaml index 4b72fd1e84..1cbae39ecf 100644 --- a/charts/osm/templates/osm-deployment.yaml +++ b/charts/osm/templates/osm-deployment.yaml @@ -24,6 +24,9 @@ spec: prometheus.io/port: '9091' spec: serviceAccountName: {{ .Release.Name }} + nodeSelector: + kubernetes.io/arch: amd64 + kubernetes.io/os: linux containers: - name: osm-controller image: "{{ .Values.OpenServiceMesh.image.registry }}/osm-controller:{{ .Values.OpenServiceMesh.image.tag }}" diff --git a/charts/osm/templates/osm-injector-deployment.yaml b/charts/osm/templates/osm-injector-deployment.yaml index 42770f7880..3a4b142622 100644 --- a/charts/osm/templates/osm-injector-deployment.yaml +++ b/charts/osm/templates/osm-injector-deployment.yaml @@ -23,6 +23,9 @@ spec: prometheus.io/port: '9091' spec: serviceAccountName: {{ .Release.Name }} + nodeSelector: + kubernetes.io/arch: amd64 + kubernetes.io/os: linux containers: - name: osm-injector image: "{{ .Values.OpenServiceMesh.image.registry }}/osm-injector:{{ .Values.OpenServiceMesh.image.tag }}"