We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Hello all,
I have OLM installed and am trying to subscribe to an operator using the configuration below.
apiVersion: operators.coreos.com/v1alpha1 kind: Subscription metadata: name: my-argocd-operator namespace: operators spec: config: tolerations: - key: "zone" operator: "Equal" value: "west" effect: "NoSchedule" channel: alpha name: argocd-operator source: operatorhubio-catalog sourceNamespace: olm I expect my operator to have the tolerance, - key: "zone" operator: "Equal" value: "west" effect: "NoSchedule" but instead I have this tolerations: - key: kubernetes.io/arch operator: Equal value: amd64 - key: kubernetes.io/arch operator: Equal value: arm64 - key: kubernetes.io/arch operator: Equal value: ppc64le - key: kubernetes.io/arch operator: Equal value: s390x Can you help me please?
apiVersion: operators.coreos.com/v1alpha1 kind: Subscription metadata: name: my-argocd-operator namespace: operators spec: config: tolerations: - key: "zone" operator: "Equal" value: "west" effect: "NoSchedule" channel: alpha name: argocd-operator source: operatorhubio-catalog sourceNamespace: olm
- key: "zone" operator: "Equal" value: "west" effect: "NoSchedule"
tolerations: - key: kubernetes.io/arch operator: Equal value: amd64 - key: kubernetes.io/arch operator: Equal value: arm64 - key: kubernetes.io/arch operator: Equal value: ppc64le - key: kubernetes.io/arch operator: Equal value: s390x
Environment
The text was updated successfully, but these errors were encountered:
No branches or pull requests
Bug Report
Hello all,
I have OLM installed and am trying to subscribe to an operator using the configuration below.
apiVersion: operators.coreos.com/v1alpha1 kind: Subscription metadata: name: my-argocd-operator namespace: operators spec: config: tolerations: - key: "zone" operator: "Equal" value: "west" effect: "NoSchedule" channel: alpha name: argocd-operator source: operatorhubio-catalog sourceNamespace: olm
I expect my operator to have the tolerance,
- key: "zone" operator: "Equal" value: "west" effect: "NoSchedule"
but instead I have this
tolerations: - key: kubernetes.io/arch operator: Equal value: amd64 - key: kubernetes.io/arch operator: Equal value: arm64 - key: kubernetes.io/arch operator: Equal value: ppc64le - key: kubernetes.io/arch operator: Equal value: s390x
Can you help me please?
Environment
The text was updated successfully, but these errors were encountered: