Created
March 23, 2026 15:47
-
-
Save zombiecalypse/3d16a7d01ae7dd8a95b29ea9d2091845 to your computer and use it in GitHub Desktop.
Slightly modified pulp-operator/config/samples/simple-test.yaml
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
| --- | |
| apiVersion: v1 | |
| kind: ConfigMap | |
| metadata: | |
| name: settings | |
| data: | |
| analytics: "False" | |
| token_server: '"http://nodeport.local:30000/token/"' | |
| content_origin: '"http://nodeport.local:30000"' | |
| ansible_api_hostname: '"http://nodeport.local:30000"' | |
| pypi_api_hostname: '"http://nodeport.local:30000"' | |
| api_root: '"/pulp/"' | |
| allowed_export_paths: '[ "/tmp" ]' | |
| allowed_import_paths: '[ "/tmp" ]' | |
| --- | |
| apiVersion: repo-manager.pulpproject.org/v1 | |
| kind: Pulp | |
| metadata: | |
| name: test-pulp | |
| spec: | |
| image: foo/bar | |
| image_version: baz | |
| image_web_version: baz | |
| image_pull_policy: Never # <<<< | |
| api: | |
| replicas: 1 | |
| content: | |
| replicas: 1 | |
| worker: | |
| replicas: 1 | |
| web: | |
| replicas: 1 | |
| database: | |
| postgres_image: postgres:15 | |
| postgres_storage_class: standard | |
| file_storage_access_mode: "ReadWriteOnce" | |
| file_storage_size: "2Gi" | |
| file_storage_storage_class: standard | |
| ingress_type: nodeport | |
| nodeport_port: 30001 | |
| custom_pulp_settings: settings |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment