This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| env: | |
| NO_PROXY: '{{ no_proxy }}' | |
| HTTP_PROXY: '{{ http_proxy }}' | |
| HTTPS_PROXY: '{{ https_proxy }}' |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| fields: | |
| - id: http_proxy | |
| type: string | |
| label: HTTP Proxy | |
| help_text: The HTTP Proxy server to access remote resources | |
| - id: https_proxy | |
| type: string | |
| label: HTTPS Proxy | |
| help_text: The HTTPS Proxy server to access remote resources via HTTPS | |
| - id: no_proxy |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| fields: | |
| - id: primary_encryption_secret | |
| type: string | |
| label: Primary Encryption Secret | |
| format: aes_key | |
| secret: true | |
| help_text: >- | |
| Used to derive AES keys for database encryption (note: may impact | |
| performance). Warning: This secret is not stored in our system; you must | |
| manually enter and remember it. If lost, an Activation reset is required. |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| fields: | |
| - id: postgres_db_host | |
| type: string | |
| label: Postgres DB Host | |
| help_text: Postgres DB Server | |
| - id: postgres_db_port | |
| type: string | |
| label: Postgres DB Port | |
| default: '5432' | |
| help_text: Postgres DB Port |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| file: | |
| template.drools_sslkey: '{{ postgres_sslkey }}' | |
| template.drools_sslcert: '{{ postgres_sslcert }}' | |
| template.drools_sslrootcert: '{{ postgres_sslrootcert }}' | |
| extra_vars: | |
| drools_db_host: '{{ postgres_db_host }}' | |
| drools_db_name: '{{ postgres_db_name }}' | |
| drools_db_port: '{{ postgres_db_port }}' | |
| drools_db_user: '{{ postgres_db_user }}' | |
| drools_sslmode: '{{ postgres_sslmode }}' |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| { | |
| "name": "sample-data-processing-workflow", | |
| "description": "A sample workflow demonstrating data processing with approval steps", | |
| "yaml_definition": { | |
| "schemaVersion": "1.0.0", | |
| "version": 1, | |
| "metadata": { | |
| "name": "sample-data-processing-workflow", | |
| "description": "A sample workflow demonstrating data processing with approval steps", | |
| "tags": [ |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| volumes: | |
| postgres-data: | |
| driver: local | |
| kestra-data: | |
| driver: local | |
| services: | |
| postgres: | |
| image: postgres | |
| volumes: |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| """ | |
| Gateway API client for AAP Gateway interactions with Service Tokens. | |
| This module provides a client class to interact with the AAP Gateway REST API, | |
| specifically for creating authenticators and mapping configurations. | |
| """ | |
| import requests | |
| import logging | |
| from typing import Dict, Optional |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| """ | |
| Settings migrator. | |
| This module handles the migration of AWX settings to Gateway. | |
| """ | |
| from django.conf import settings | |
| from base_migrator import BaseAuthenticatorMigrator | |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| alerts: | |
| - annotations: | |
| description: https://prometheus.io is reachable for more than 1 minute. | |
| summary: Host https://prometheus.io is up | |
| endsAt: '0001-01-01T00:00:00Z' | |
| fingerprint: 226ceaf4d7c8760e | |
| generatorURL: http://a847ec21bcc3:9090/graph?g0.expr=probe_success%7Bjob%3D%22blackbox%22%7D+%3D%3D+1&g0.tab=1 | |
| labels: | |
| alertname: HostUp | |
| instance: https://prometheus.io |
NewerOlder