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