aboutsummaryrefslogtreecommitdiffstats
path: root/docs/api
AgeCommit message (Expand)AuthorFilesLines
2022-04-21Document changes for API springboot migrationRashmi Pujar1-10/+27
2022-03-25Add documentation for toscaNodeTemplate apis in onap docrameshiyer272-0/+1772
2021-11-03Rename username for API operations.adheli.tavares1-10/+10
2020-08-21Add guard filter documentationPamela Dragosh1-0/+1
2020-08-20Change doc to new dcaegen2 policy typePamela Dragosh1-4/+4
2020-08-18Correct documentation issues for Policy projectEric Debeau1-1/+1
2020-08-07Removing legacy operational policy from documentsRam Krishna Verma2-404/+0
2020-07-27Documentation for 'Fetch and Delete policy API with PolicyName and PolicyVers...puthuparambil.aditya2-1/+289
2020-05-21Fix last documentation warningsPamela Dragosh1-3/+0
2020-05-13Fix labels that generated warningsPamela Dragosh1-0/+4
2020-05-06Update API documentationliamfallon1-22/+63
2020-05-04Design/api documentationPamela Dragosh1-6/+45
2020-03-27Fixing error in policy-api readthedocs pagea.sreekumar1-0/+1
2020-03-20Updated documentation for Frankfurt changes to api and xacml-pdpChenfei Gao3-626/+64
2020-01-16Updated API documentation to reflect the addition of version validation featureChenfei Gao5-46/+92
2019-10-15Update api swagger docs to reflect application/yaml supportChenfei Gao7-31/+31
2019-10-10Update api documentation to reflect addition of new policy creation endpointChenfei Gao2-1/+78
2019-10-01Fix links in api docChenfei Gao1-25/+25
2019-09-11Update api docs to reflect the most recent changes to policytypesChenfei Gao24-1730/+30
2019-08-23Add documentation for stability/performance tests of policy componentsChenfei Gao1-2/+3
2019-08-21Update API swagger to reflect the most recent changes to deployed endpointsChenfei Gao2-2/+146
2019-06-12Fix documentation add tutorialPamela Dragosh1-2/+2
2019-05-21Add more textual explanation in api docChenfei Gao30-25/+1860
2019-05-21Add policy design api documentationChenfei Gao7-3/+2489
2019-05-21Initial set of documentationPamela Dragosh1-0/+14
="p p-Indicator">: "{{ .Values.global.readinessRepository }}/{{ .Values.global.readinessImage }}" imagePullPolicy: {{ .Values.global.pullPolicy | default .Values.pullPolicy }} name: {{ include "common.name" . }}-readiness containers: - command: - /bin/bash - ./do-start.sh - pap name: {{ include "common.name" . }} image: "{{ include "common.repository" . }}/{{ .Values.image }}" imagePullPolicy: {{ .Values.global.pullPolicy | default .Values.pullPolicy }} resources: {{ include "common.resources" . | indent 12 }} ports: - containerPort: {{ .Values.service.externalPort }} - containerPort: {{ .Values.service.externalPort2 }} {{- if eq .Values.liveness.enabled true }} livenessProbe: tcpSocket: port: {{ .Values.service.externalPort }} initialDelaySeconds: {{ .Values.liveness.initialDelaySeconds }} periodSeconds: {{ .Values.liveness.periodSeconds }} {{ end -}} readinessProbe: tcpSocket: port: {{ .Values.service.externalPort }} initialDelaySeconds: {{ .Values.readiness.initialDelaySeconds }} periodSeconds: {{ .Values.readiness.periodSeconds }} env: - name: PRELOAD_POLICIES value: "{{ .Values.config.preloadPolicies }}" volumeMounts: - mountPath: /etc/localtime name: localtime readOnly: true - mountPath: /tmp/policy-install/config/push-policies.sh name: pe-pap subPath: push-policies.sh - mountPath: /tmp/policy-install/config/pap-tweaks.sh name: pe-pap subPath: pap-tweaks.sh - mountPath: /tmp/policy-install/config/paplp.conf name: pe-pap subPath: paplp.conf - mountPath: /tmp/policy-install/config/pap.conf name: pe-pap subPath: pap.conf - mountPath: /tmp/policy-install/config/mysql.conf name: pe-pap subPath: mysql.conf - mountPath: /tmp/policy-install/config/elk.conf name: pe-pap subPath: elk.conf - mountPath: /tmp/policy-install/config/console.conf name: pe-pap subPath: console.conf - mountPath: /tmp/policy-install/config/base.conf name: pe subPath: base.conf - mountPath: /tmp/policy-install/do-start.sh name: pe-scripts subPath: do-start.sh - mountPath: /var/log/onap name: policy-logs - mountPath: /tmp/policy-install/logback.xml name: policy-sdk-logback subPath: logback.xml - mountPath: /tmp/logback.xml name: policy-logback subPath: logback.xml lifecycle: postStart: exec: command: ["/bin/sh", "-c", "export LOG=wait_logback.log; touch $LOG; export SRC=/tmp/logback.xml; export DST=/opt/app/policy/servers/pap/webapps/pap/WEB-INF/classes/; while [ ! -e $DST ]; do echo 'Waiting for $DST...' >> $LOG; sleep 5; done; sleep 2; /bin/cp -f $SRC $DST; export SRC=/tmp/policy-install/logback.xml; export DST=/opt/app/policy/servers/console/webapps/onap/WEB-INF/classes/; while [ ! -e $DST ]; do echo 'Waiting for $DST...' >> $LOG; sleep 5; done; sleep 2; /bin/cp -f $SRC $DST; echo 'Done' >> $LOG"] - image: "{{ .Values.global.loggingRepository | default .Values.loggingRepository }}/{{ .Values.global.loggingImage | default .Values.loggingImage }}" imagePullPolicy: {{ .Values.global.pullPolicy | default .Values.pullPolicy }} name: filebeat-onap volumeMounts: - mountPath: /usr/share/filebeat/filebeat.yml name: filebeat-conf subPath: filebeat.yml - mountPath: /var/log/onap name: policy-logs - mountPath: /usr/share/filebeat/data name: policy-data-filebeat volumes: - name: localtime hostPath: path: /etc/localtime - name: filebeat-conf configMap: name: {{ .Release.Name }}-filebeat-configmap - name: policy-logs emptyDir: {} - name: policy-data-filebeat emptyDir: {} - name: policy-logback configMap: name: {{ include "common.fullname" . }}-log-configmap - name: policy-sdk-logback configMap: name: {{ include "common.fullname" . }}-sdk-log-configmap - name: pe configMap: name: {{ .Release.Name }}-pe-configmap defaultMode: 0755 - name: pe-scripts configMap: name: {{ .Release.Name }}-pe-scripts-configmap defaultMode: 0777 - name: pe-pap configMap: name: {{ include "common.fullname" . }}-pe-configmap defaultMode: 0755 imagePullSecrets: - name: "{{ include "common.namespace" . }}-docker-registry-key"