f56bd964babd76da81ca2382f833e871334ef0ec
[dcaegen2/platform/plugins.git] / k8s / ChangeLog.md
1 # Change Log
2
3 All notable changes to this project will be documented in this file.
4
5 The format is based on [Keep a Changelog](http://keepachangelog.com/)
6 and this project adheres to [Semantic Versioning](http://semver.org/).
7
8 ## [1.7.2]
9 * DCAEGEN2-2006 Reduce code complexity
10  The k8sclient.k8sclient.deploy function parameter 'resources' is now an optional
11  keyword argument, i.e. it must be passed named and not as a positional argument.
12
13 ## [1.7.1]
14 * DCAEGEN2-1988 Customize python import for kubernetes plugin
15
16 ## [1.7.0]
17 * DCAEGEN2-1956 support python3 in all plugins
18
19 ## [1.4.13]
20  Fix bug related to setting the delivery URL for a DR subscriber.  (DCAEGEN2-1009)
21
22 ## [1.4.12]
23  Change location of kubeconfig file for multi-cluster support.  Put the
24  file in a subdirectory so that the k8s volume mount does not require a
25  "subPath" parameter, so that updates to the ConfigMap hosting the kubeconfig
26  will be visible to the plugin without restarting Cloudify Manager.
27
28 ## [1.4.11]
29  change v['container']['mode'] to v['container'].get('mode') to allow for
30  the 'mode' value to be absent from v['container']
31  add comment: The name segment is required and must be 63 characters or less
32  (https://kubernetes.io/docs/concepts/overview/working-with-objects/labels/)
33
34 ## [1.4.10]
35  Support for deploying to multiple Kubernetes clusters.
36
37 ## [1.4.9]
38 * Support for liveness probes (https://kubernetes.io/docs/tasks/configure-pod-container/configure-liveness-readiness-probes/)
39 * fix the readiness probe to run script such as "/opt/app/snmptrap/bin/snmptrapd.sh status"
40 * change "ports" and the "mode" of volume to be optional instead of mandatory
41
42 ## [1.4.8]
43 * If an installation step times out because a component does not become ready within the maximum wait time,
44 delete the Kubernetes artifacts associated with the component.  Previously, an installation step might time
45 out due to a very slow image pull.  Cloudify would report a failure, but the component would come up, much
46 later, after Kubernetes finished pulling the image.   This should no longer happen.
47
48 ## [1.4.7]
49 * Increase unit test coverage
50
51 ## [1.4.6]
52 * Support for specifying CPU and memory resources in a blueprint for a containerized component
53 * Changes the default time that the plugin will wait for a container to become ready from 300 seconds to 1800 seconds
54
55 ## [1.4.5]
56 * DCAEGEN2-1086 update onap-dcae-dcaepolicy-lib version to avoid Consul stores under old service_component_name
57
58 ## [1.3.0]
59 * Enhancement: Add support for changing the image running in the application container.  ("Rolling upgrade")
60
61 ## [1.2.0]
62 * Enhancement: Use the "healthcheck" parameters from node_properties to set up a
63 Kubernetes readiness probe for the container.
64
65 ## [1.1.0]
66 * Enhancement: When Cloudify Manager is running in a Docker container in a Kubernetes environment, the plugin can use the Kubernetes API credentials set up by Kubernetes.
67
68 ## [1.0.1]
69 * Fixes a bug in passing environment variables.
70
71 ## [1.0.0]
72
73 * Initial release of the Kubernetes plugin.  It is built on the [Docker plugin](../docker) and preserves the Docker plugin's integration with the policy plugin and the DMaaP plugin.