Judson Lester

Results 152 comments of Judson Lester

Detecting the URL seems like a weird detail to focus on; the key thing here is that `gh` can't download artifacts when run in a Github Action. My use case...

Working with it today, I see the challenge: while the workflow run is running, it presumably doesn't yet have access to its own `actions/runs` data. Is that right? In itself,...

I mean, I've wound up writing a script like `gh api "/repos/ymeadows/tier0-cluster/actions/runs?status=in_progress" -q '. | select(.total_count == 1) | .workflow_runs[0].id'` to kind of emulate this behavior. I think the runs...

Ideally, I'd like to be able to edit a buffer, copy the encrypted version to the clipboard without writing a file. Currently using xsel; rm for the task. On Feb...

I've started looking at the GCP Workloads view, and something similar in K9s would be fabulous. Maybe this is a different feature request, though.

@derailed Is this a feature you'd accept into K9s? Could someone else provide a PR?

Sure: ``` apiVersion: beat.k8s.elastic.co/v1beta1 kind: Beat metadata: annotations: association.k8s.elastic.co/es-conf: '{"authSecretName":"filebeat-beat-user","authSecretKey":"management-filebeat-beat-user","caCertProvided":true,"caSecretName":"filebeat-beat-es-ca","url":"https://elasticsearch-es-http.management.svc:9200","version":"7.16.2"}' association.k8s.elastic.co/kb-conf: '{"authSecretName":"filebeat-beat-kb-user","authSecretKey":"management-filebeat-beat-kb-user","caCertProvided":true,"caSecretName":"filebeat-beat-kibana-ca","url":"https://elasticsearch-kb-http.management.svc:5601","version":"7.16.2"}' common.k8s.elastic.co/controller-version: 1.9.1 name: filebeat namespace: management spec: config: filebeat: autodiscover: providers: - hints: default_config: paths: - /var/log/containers/*${data.kubernetes.container.id}.log type:...

Re-reviewing, the constraints are there on the _pod_ and not on the _container._ If I'd tried to create a Pod this way directly, the Kuberrnetes API would have rejected it.

Thinking again about this issue (it was brought to mind [here](https://github.com/cue-lang/cue/issues/454#issuecomment-1694761491) ) My own interest comes from wanting to remove Kustomize from my build pipeline. Currently, we rely on a...