summaryrefslogtreecommitdiffstats
path: root/kubernetes/vfc/charts/vfc-redis
AgeCommit message (Expand)AuthorFilesLines
2020-09-04[GENERAL] Use readiness container v3.0.1Sylvain Desbureaux1-2/+1
2020-08-25[VFC]Remove the process of mysql in vfc-redisdengyh4-15/+3
2020-07-30[VFC] Make VFC compatible with Kubernetes v1.17Grzegorz-Lis1-1/+4
2020-04-02Bump chart versionSylvain Desbureaux1-1/+1
2020-03-11Add VFC env about reg_to_msb_when_start to determine whether register to micr...yangyan1-0/+2
2020-03-10Update VFC release version in oomyangyan1-1/+1
2020-02-01[ONAP-wide] Replace .Release.Name with common.releaseKrzysztof Opasiak2-4/+4
2019-09-19Update vfc release version to oomyangyan1-1/+1
2019-07-11Moving Helm Chart version for El AltoMike Elliott1-1/+1
2019-05-14update vfc versionyangyan1-1/+1
2019-05-05fix vfc chart issueyangyanyj5-0/+244
{ color: #bb0066; font-weight: bold } /* Name.Class */ .highlight .no { color: #003366; font-weight: bold } /* Name.Constant */ .highlight .nd { color: #555555 } /* Name.Decorator */ .highlight .ne { color: #bb0066; font-weight: bold } /* Name.Exception */ .highlight .nf { color: #0066bb; font-weight: bold } /* Name.Function */ .highlight .nl { color: #336699; font-style: italic } /* Name.Label */ .highlight .nn { color: #bb0066; font-weight: bold } /* Name.Namespace */ .highlight .py { color: #336699; font-weight: bold } /* Name.Property */ .highlight .nt { color: #bb0066; font-weight: bold } /* Name.Tag */ .highlight .nv { color: #336699 } /* Name.Variable */ .highlight .ow { color: #008800 } /* Operator.Word */ .highlight .w { color: #bbbbbb } /* Text.Whitespace */ .highlight .mb { color: #0000DD; font-weight: bold } /* Literal.Number.Bin */ .highlight .mf { color: #0000DD; font-weight: bold } /* Literal.Number.Float */ .highlight .mh { color: #0000DD; font-weight: bold } /* Literal.Number.Hex */ .highlight .mi { color: #0000DD; font-weight: bold } /* Literal.Number.Integer */ .highlight .mo { color: #0000DD; font-weight: bold } /* Literal.Number.Oct */ .highlight .sa { color: #dd2200; background-color: #fff0f0 } /* Literal.String.Affix */ .highlight .sb { color: #dd2200; background-color: #fff0f0 } /* Literal.String.Backtick */ .highlight .sc { color: #dd2200; background-color: #fff0f0 } /* Literal.String.Char */ .highlight .dl { color: #dd2200; background-color: #fff0f0 } /* Literal.String.Delimiter */ .highlight .sd { color: #dd2200; background-color: #fff0f0 } /* Literal.String.Doc */ .highlight .s2 { color: #dd2200; background-color: #fff0f0 } /* Literal.String.Double */ .highlight .se { color: #0044dd; background-color: #fff0f0 } /* Literal.String.Escape */ .highlight .sh { color: #dd2200; background-color: #fff0f0 } /* Literal.String.Heredoc */ .highlight .si { color: #3333bb; background-color: #fff0f0 } /* Literal.String.Interpol */ .highlight .sx { color: #22bb22; background-color: #f0fff0 } /* Literal.String.Other */ .highlight .sr { color: #008800; background-color: #fff0ff } /* Literal.String.Regex */ .highlight .s1 { color: #dd2200; background-color: #fff0f0 } /* Literal.String.Single */ .highlight .ss { color: #aa6600; background-color: #fff0f0 } /* Literal.String.Symbol */ .highlight .bp { color: #003388 } /* Name.Builtin.Pseudo */ .highlight .fm { color: #0066bb; font-weight: bold } /* Name.Function.Magic */ .highlight .vc { color: #336699 } /* Name.Variable.Class */ .highlight .vg { color: #dd7700 } /* Name.Variable.Global */ .highlight .vi { color: #3333bb } /* Name.Variable.Instance */ .highlight .vm { color: #336699 } /* Name.Variable.Magic */ .highlight .il { color: #0000DD; font-weight: bold } /* Literal.Number.Integer.Long */ }
.. This work is licensed under a Creative Commons Attribution 4.0 International License.


Offered APIs
=================

+---------------------+----------+-------------------------------------------------------+------------------------------------------------------------------------------------------+
| Entity              | Method   | Path Info                                             | Description                                                                              |
+=====================+==========+=======================================================+==========================================================================================+
| Health Check        | GET      | /healthCheck                                          | The Health Status of the application checks the DB connection.                           |
+---------------------+----------+-------------------------------------------------------+------------------------------------------------------------------------------------------+
|                     |          |                                                       | | Used by IDNS for redundancy                                                            |
|                     |          |                                                       | |                                                                                        |
|                     |          |                                                       | | return response entity:                                                                |
|                     |          |                                                       | | - statusCode Either 200 or 500                                                         |
|                     |          |                                                       | | - detailedMsg of the result, in case of failure particular error message               |
|                     |          |                                                       | |                                                                                        |
|                     |          |                                                       | | Expected:                                                                              |
|                     |          |                                                       |                                                                                          |
|                     |          |                                                       | .. code-block:: javascript                                                               |
|                     |          |                                                       |                                                                                          |
|                     |          |                                                       |     {                                                                                    |
|                     |          |                                                       |       "statusCode": 200,                                                                 |
|                     |          |                                                       |       "detailedMsg": "health check succeeded",                                           |
|                     |          |                                                       |       "date": current date                                                               |
|                     |          |                                                       |     }                                                                                    |
|                     |          |                                                       |                                                                                          |
+---------------------+----------+-------------------------------------------------------+------------------------------------------------------------------------------------------+
| Health Check        | GET      | rest/healthCheck/{User-Agent}/{X-ECOMP-RequestID}     | The Health Status of the application checks the DB connection                            |
+---------------------+----------+-------------------------------------------------------+------------------------------------------------------------------------------------------+
|                     |          |                                                       | | return response entity:                                                                |
|                     |          |                                                       | | - statusCode Either 200 or 500                                                         |
|                     |          |                                                       | | - detailedMsg of the result, in case of failure particular error message               |
|                     |          |                                                       | | - date string indicating the current date & time                                       |
|                     |          |                                                       | |                                                                                        |
|                     |          |                                                       | | Expected:                                                                              |
|                     |          |                                                       |                                                                                          |
|                     |          |                                                       | .. code-block:: javascript                                                               |
|                     |          |                                                       |                                                                                          |
|                     |          |                                                       |    {                                                                                     |
|                     |          |                                                       |      "statusCode": 200,                                                                  |
|                     |          |                                                       |      "detailedMsg": "health check succeeded",                                            |
|                     |          |                                                       |      "date": current date                                                                |
|                     |          |                                                       |    }                                                                                     |
|                     |          |                                                       |                                                                                          |
+---------------------+----------+-------------------------------------------------------+------------------------------------------------------------------------------------------+
| Commit Version      | GET      | /commitInfo                                           | Displays info about the last commit of the running build                                 |
+---------------------+----------+-------------------------------------------------------+------------------------------------------------------------------------------------------+
|                     |          |                                                       | | return response entity:                                                                |
|                     |          |                                                       | | - commitId full id of the commit                                                       |
|                     |          |                                                       | | - commitMessageShort short message from the commit                                     |
|                     |          |                                                       | | - commitTime time of the commit                                                        |
|                     |          |                                                       | |                                                                                        |
|                     |          |                                                       | | Expected:                                                                              |
|                     |          |                                                       |                                                                                          |
|                     |          |                                                       | .. code-block:: javascript                                                               |
|                     |          |                                                       |                                                                                          |
|                     |          |                                                       |    {                                                                                     |
|                     |          |                                                       |      "commitId": id of the last commit                                                   |
|                     |          |                                                       |      "commitMessageShort": short message of the last commit                              |
|                     |          |                                                       |      "commitTime": time of the last commit                                               |
|                     |          |                                                       |    }                                                                                     |
|                     |          |                                                       |                                                                                          |
+---------------------+----------+-------------------------------------------------------+------------------------------------------------------------------------------------------+


.. _vid-maintenance-apis:

Maintenance APIs
------------------

+---------------------+----------+-------------------------------------------------------+------------------------------------------------------------------------------------------+
| Maintenance:        | POST     | /maintenance/category_parameter/{categoryName}        | Populate VID Project/Owning entity/Line of Business/Platform drop downs                  |
| Category Parameters |          |                                                       |                                                                                          |
+---------------------+----------+-------------------------------------------------------+------------------------------------------------------------------------------------------+
|                     |          |                                                       | ``{categoryName}`` is one of lineOfBusiness, platform, project, owningEntity.            |
|                     |          |                                                       |                                                                                          |
|                     |          |                                                       | POST body:                                                                               |
|                     |          |                                                       |                                                                                          |
|                     |          |                                                       | .. code-block:: javascript                                                               |
|                     |          |                                                       |                                                                                          |
|                     |          |                                                       |    {                                                                                     |
|                     |          |                                                       |      "options": [ <list of strings> ]                                                    |
|                     |          |                                                       |    }                                                                                     |
|                     |          |                                                       |                                                                                          |
+---------------------+----------+-------------------------------------------------------+------------------------------------------------------------------------------------------+