aboutsummaryrefslogtreecommitdiffstats
path: root/kubernetes/aaf
AgeCommit message (Expand)AuthorFilesLines
2018-05-15Enable https endpoint for SMSKiran Kamineni6-18/+24
2018-05-11Update readiness-check to 2.0.0Gary Wu7-7/+7
2018-05-10Improve docker registry secret managementBorislavG12-12/+0
2018-05-08Remove AAF truststore files from configmapMike Elliott10-602/+28
2018-05-08Sync docker image images with docker-manifest.csvGary Wu2-2/+2
2018-05-08fixing duplicate nodeport with SOMandeep Khinda1-1/+1
2018-05-07AAF ChartsMahendra Raghuwanshi90-293/+3517
2018-04-25Adding Quorum client sub chart for smsKiran Kamineni20-7/+387
2018-04-24Make all services independent of helm Release.NameBorislavG6-6/+8
2018-04-16Update readiness-check versionBorislavG2-2/+2
2018-04-11Merge "Using .values.service.name for service URL"Borislav Glozman5-8/+5
2018-04-10Using .values.service.name for service URLKiran Kamineni5-8/+5
2018-04-08aaf mapping fixKeren Joseph5-0/+0
2018-04-05Add support for secret management serviceKiran Kamineni16-7/+637
2018-03-28Add standardized helm chart for aafkj16-196/+475
2018-03-22License addition in all yamlsvaibhav_16dec7-0/+98
2018-03-07Replica scaling of Clamp and AAF conatinervaibhav_16dec3-1/+4
2018-03-01Run all components in one namespaceBorislavG5-6/+6
2018-02-22AAF - readiness image updatekerenj1-1/+1
2018-01-25AAF config seggregationvaibhav_16dec9-5/+451
2017-11-23Update annotations to spec for aafkiranya1-27/+16
2017-10-29Add option to disable specific deploymentsyuryn3-0/+8
2017-10-02Added missing mount to aaf deployment yamlDusan Rozman2-2/+9
2017-09-26Added AAF containers to ONAP KubernetesDusan Rozman5-0/+142
="c1">################################################################# # Secrets Configuration. ################################################################# secrets: - uid: &aafCredsUID aafcreds type: basicAuth login: '{{ .Values.aafCreds.identity }}' password: '{{ .Values.aafCreds.password }}' passwordPolicy: required - uid: &drSubCredsUID drsubcreds type: basicAuth login: '{{ .Values.drSubscriberCreds.username }}' password: '{{ .Values.drSubscriberCreds.password }}' passwordPolicy: required ################################################################# # InitContainer Images. ################################################################# tlsImage: onap/org.onap.dcaegen2.deployments.tls-init-container:2.1.0 ################################################################# # Application Configuration Defaults. ################################################################# # Application Image image: onap/org.onap.dcaegen2.services.pm-mapper:1.8.0 pullPolicy: Always # Log directory where logging sidecar should look for log files # if path is set to null sidecar won't be deployed in spite of # global.centralizedLoggingEnabled setting. log: path: /var/log/ONAP/dcaegen2/services/pm-mapper logConfigMapNamePrefix: '{{ include "common.fullname" . }}' # Directory where TLS certs should be stored # if absent, no certs will be retrieved and stored certDirectory: /opt/app/pm-mapper/etc/cert # TLS role -- set to true if microservice acts as server # If true, an init container will retrieve a server cert # and key from AAF and mount them in certDirectory. tlsServer: true # Dependencies readinessCheck: wait_for: containers: - aaf-cm - dmaap-bc - dmaap-provisioning-job - dcae-datafile-collector # Probe Configuration readiness: initialDelaySeconds: 10 periodSeconds: 15 timeoutSeconds: 1 path: /healthcheck scheme: HTTP port: 8081 # Service Configuration service: type: ClusterIP name: dcae-pm-mapper both_tls_and_plain: true ports: - name: https port: 8443 plain_port: 8081 port_protocol: http # AAF Credentials aafCreds: identity: dcae@dcae.onap.org password: demo123456! # Data Router Subscriber Credentials drSubscriberCreds: username: username password: password credentials: - name: AAF_IDENTITY uid: *aafCredsUID key: login - name: AAF_PASSWORD uid: *aafCredsUID key: password - name: DR_USERNAME uid: *drSubCredsUID key: login - name: DR_PASSWORD uid: *drSubCredsUID key: password # Initial Application Configuration applicationConfig: enable_tls: true enable_http: true aaf_identity: "" aaf_password: "" pm-mapper-filter: "{ \"filters\":[] }" key_store_path: /opt/app/pm-mapper/etc/cert/cert.jks key_store_pass_path: /opt/app/pm-mapper/etc/cert/jks.pass trust_store_path: /opt/app/pm-mapper/etc/cert/trust.jks trust_store_pass_path: /opt/app/pm-mapper/etc/cert/trust.pass dmaap_dr_delete_endpoint: https://dmaap-dr-node:8443/delete streams_publishes: dmaap_publisher: type: message_router dmaap_info: client_id: ${MR_FILES_PUBLISHER_CLIENT_ID_0} location: san-francisco client_role: org.onap.dcae.pmPublisher topic_url: http://message-router:3904/events/unauthenticated.PERFORMANCE_MEASUREMENTS streams_subscribes: dmaap_subscriber: type: data_router dmaap_info: subscriber_id: ${DR_FILES_SUBSCRIBER_ID_0} decompress: true privileged: true username: ${DR_USERNAME} password: ${DR_PASSWORD} location: san-francisco delivery_url: http://dcae-pm-mapper:8081/delivery # DataRouter Feed Configuration drFeedConfig: - feedName: bulk_pm_feed owner: dcaecm feedVersion: "0.0" asprClassification: unclassified feedDescription: DFC Feed Creation # DataRouter Subscriber Configuration drSubConfig: - feedName: bulk_pm_feed decompress: true username: ${DR_USERNAME} userpwd: ${DR_PASSWORD} dcaeLocationName: loc00 privilegedSubscriber: true deliveryURL: http://dcae-pm-mapper:8081/delivery # ConfigMap Configuration for Dr Feed, Subscriber, MR Topics volumes: - name: feeds-config path: /opt/app/config/feeds - name: drsub-config path: /opt/app/config/dr_subs # Resource Limit Flavor -By Default Using Small flavor: small # Segregation for Different Environment (Small and Large) resources: small: limits: cpu: 1 memory: 1Gi requests: cpu: 1 memory: 1Gi large: limits: cpu: 2 memory: 2Gi requests: cpu: 2 memory: 2Gi unlimited: {} #Pods Service Account serviceAccount: nameOverride: dcae-pm-mapper roles: - read