workflow
Here are 3,338 public repositories matching this topic...
-
Updated
Feb 24, 2022 - TypeScript
-
Updated
Feb 24, 2022 - TypeScript
-
Updated
Feb 15, 2022 - Java
Summary
Add support for setting custom HTTP headers to argo CLI, similar to argocd -H, --header.
Use Cases
When Argo Workflows is configured behind IAP proxy like Cloudflare Access, we need to set a custom header with key cf-access-token and the actual token as a value.
Otherwise, when we execute argo list, we face the following error:
FATA[2022-02-23T22:38:56.530-
Updated
Feb 22, 2022 - JavaScript
Description
It looks like the installation command should be conda install -c conda-forge prefect python-kubernetes
https://github.com/PrefectHQ/prefect/blame/master/docs/orchestration/agents/kubernetes.md#L28
Logs:
(prefect) ubuntu@ip-172-31-7-79:~/perfect$ prefect agent kubernetes start --name "K8S Agent"
Traceback (most recent call-
Updated
Aug 8, 2021 - JavaScript
-
Updated
Jan 2, 2022 - Go
-
Updated
Feb 22, 2022
Right now, we've got this chunk of code:
def _columns_to_markdown(columns: Mapping[str, Any]) -> str:
return (
textwrap.dedent(
"""
| Name | Description |
| - | - |
"""
)
+ "\n".join([f"| {name} | {metadata['description']}" for name, metadata in columns.items()])
)
Instead of representing them with markdown, we
-
Updated
Dec 31, 2021 - JavaScript
-
Updated
Feb 18, 2022 - C#
-
Updated
Jan 27, 2022 - Shell
Hey everyone, I hope y'all enjoyed your holidays.
I want to create SuiteCRM users via the V8 api, but the response is invalid json and contains some generic validation error message.
I'm not sure whether my request is actually malformed or the error message just shouldn't appear.
-
Updated
Feb 15, 2022 - JavaScript
-
Updated
Dec 28, 2021 - Python
-
Updated
Feb 23, 2022 - TypeScript
-
Updated
Feb 24, 2022 - Java
-
Updated
Feb 17, 2022 - PHP
-
Updated
Feb 16, 2022 - TypeScript
Hiya, I am looking to achieve the below integration between Reddit and Todoist:
Any posts I save in Reddit will appear as Tasks in Todoist
I reckon this cannot be achieved via Pipedream currently, therefore creating this request.
-
Updated
Dec 10, 2021 - JavaScript
Is your feature request related to a problem? Please describe.
It's not especially common to generate a certificate file which includes its own CA chain as well. The common case would be to have a shared CA chain file for each node, and then each node gets its own certificate (which other nodes cannot access). The Java client, for example, already works like this. Right now, for inter-clust
-
Updated
Jul 30, 2020 - CSS
-
Updated
Feb 7, 2022 - Python
Improve this page
Add a description, image, and links to the workflow topic page so that developers can more easily learn about it.
Add this topic to your repo
To associate your repository with the workflow topic, visit your repo's landing page and select "manage topics."
Apache Airflow version
2.2.4 (latest released)
What happened
When triggering this dag below it runs when it should fail. A set is being passed to default_args instead of what should be a dictionary yet the dag still succeeds.
What you expected to happen
I expected the dag to fail as the default_args parameter should only be a dictionary.
How to reproduce