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
Would it be possible to generalize the use of JSONPath such that multiple filters could be provided?
The challenge is that JSONPath is a filter mechanism but does not (!?) contain predicates.
We can do e.g.:
{.spec.brokerPodSpec.containers[*].resources.limits} {.spec.brokerPodSpec.protocol} ...
But would want e.g.:
Perhaps providing the filters as configuration to the Deployment too:
- name: webhook image: ghcr.io/dazwilkin/akri-webhook@... imagePullPolicy: Always args: - --filter="{.spec.brokerPodSpec.containers[*].resources.limits}" - --filter="{.spec.protocol.zeroconfg}" - --tls-crt-file=/secrets/tls.crt - --tls-key-file=/secrets/tls.key - --port=8443 - --logtostderr - -v=2 volumeMounts: - name: secrets mountPath: /secrets readOnly: true volumes: - name: secrets secret: secretName: SERVICE
The text was updated successfully, but these errors were encountered:
No branches or pull requests
Would it be possible to generalize the use of JSONPath such that multiple filters could be provided?
The challenge is that JSONPath is a filter mechanism but does not (!?) contain predicates.
We can do e.g.:
But would want e.g.:
Perhaps providing the filters as configuration to the Deployment too:
The text was updated successfully, but these errors were encountered: