49 lines
1.0 KiB
YAML
49 lines
1.0 KiB
YAML
---
|
|
apiVersion: v1
|
|
kind: Secret
|
|
metadata:
|
|
name: 'example-pulp-admin-password'
|
|
stringData:
|
|
password: 'xxxxxxxx'
|
|
---
|
|
apiVersion: v1
|
|
kind: ConfigMap
|
|
metadata:
|
|
name: settings
|
|
data:
|
|
analytics: "False"
|
|
token_server: '"https://artifact.onwalk.net/pulp/api/v3/token/"'
|
|
content_origin: '"https://artifact.onwalk.net"'
|
|
ansible_api_hostname: '"https://artifact.onwalk.net"'
|
|
pypi_api_hostname: '"https://artifact.onwalk.net"'
|
|
api_root: '"/pulp/"'
|
|
allowed_export_paths: '[ "/tmp" ]'
|
|
allowed_import_paths: '[ "/tmp" ]'
|
|
|
|
---
|
|
apiVersion: repo-manager.pulpproject.org/v1
|
|
kind: Pulp
|
|
metadata:
|
|
name: example-pulp
|
|
spec:
|
|
custom_pulp_settings: settings
|
|
admin_password_secret: "example-pulp-admin-password"
|
|
api:
|
|
replicas: 1
|
|
content:
|
|
replicas: 1
|
|
worker:
|
|
replicas: 1
|
|
web:
|
|
replicas: 1
|
|
database:
|
|
postgres_storage_class: local-path
|
|
file_storage_access_mode: "ReadWriteMany"
|
|
file_storage_size: "2Gi"
|
|
file_storage_storage_class: local-path
|
|
cache:
|
|
enabled: true
|
|
redis_storage_class: local-path
|
|
ingress_type: none
|
|
|