US20210255846A1 - Cognitively determining updates for container based solutions - Google Patents
Cognitively determining updates for container based solutions Download PDFInfo
- Publication number
- US20210255846A1 US20210255846A1 US16/789,782 US202016789782A US2021255846A1 US 20210255846 A1 US20210255846 A1 US 20210255846A1 US 202016789782 A US202016789782 A US 202016789782A US 2021255846 A1 US2021255846 A1 US 2021255846A1
- Authority
- US
- United States
- Prior art keywords
- program instructions
- updated image
- container
- computer
- program
- Prior art date
- Legal status (The legal status is an assumption and is not a legal conclusion. Google has not performed a legal analysis and makes no representation as to the accuracy of the status listed.)
- Granted
Links
Images
Classifications
-
- G—PHYSICS
- G06—COMPUTING; CALCULATING OR COUNTING
- G06F—ELECTRIC DIGITAL DATA PROCESSING
- G06F8/00—Arrangements for software engineering
- G06F8/60—Software deployment
- G06F8/65—Updates
-
- G—PHYSICS
- G06—COMPUTING; CALCULATING OR COUNTING
- G06F—ELECTRIC DIGITAL DATA PROCESSING
- G06F9/00—Arrangements for program control, e.g. control units
- G06F9/06—Arrangements for program control, e.g. control units using stored programs, i.e. using an internal store of processing equipment to receive or retain programs
- G06F9/44—Arrangements for executing specific programs
- G06F9/455—Emulation; Interpretation; Software simulation, e.g. virtualisation or emulation of application or operating system execution engines
- G06F9/45533—Hypervisors; Virtual machine monitors
- G06F9/45558—Hypervisor-specific management and integration aspects
-
- G—PHYSICS
- G06—COMPUTING; CALCULATING OR COUNTING
- G06F—ELECTRIC DIGITAL DATA PROCESSING
- G06F9/00—Arrangements for program control, e.g. control units
- G06F9/06—Arrangements for program control, e.g. control units using stored programs, i.e. using an internal store of processing equipment to receive or retain programs
- G06F9/44—Arrangements for executing specific programs
- G06F9/455—Emulation; Interpretation; Software simulation, e.g. virtualisation or emulation of application or operating system execution engines
- G06F9/45533—Hypervisors; Virtual machine monitors
- G06F9/45558—Hypervisor-specific management and integration aspects
- G06F2009/45587—Isolation or security of virtual machine instances
-
- G—PHYSICS
- G06—COMPUTING; CALCULATING OR COUNTING
- G06F—ELECTRIC DIGITAL DATA PROCESSING
- G06F8/00—Arrangements for software engineering
- G06F8/60—Software deployment
- G06F8/61—Installation
- G06F8/63—Image based installation; Cloning; Build to order
-
- H—ELECTRICITY
- H04—ELECTRIC COMMUNICATION TECHNIQUE
- H04L—TRANSMISSION OF DIGITAL INFORMATION, e.g. TELEGRAPHIC COMMUNICATION
- H04L67/00—Network arrangements or protocols for supporting network services or applications
- H04L67/34—Network arrangements or protocols for supporting network services or applications involving the movement of software or configuration parameters
Definitions
- the present invention relates generally to the field of operating system virtualization, and more particularly to containerization.
- OS-level virtualization refers to an operating system paradigm in which a kernel allows an existence of multiple isolated user-space instances. Such instances, called containers, zones, virtual private servers, partitions, virtual environments, virtual kernel, or jails, may look like real computers from the perspective of the contained programs. A computer program running on an ordinary operating system can see all resources (connected devices, files and folders, network shares, CPU power, quantifiable hardware capabilities) of that computer, however, programs running inside of a container can only see the contents of the container and devices assigned to the container.
- Operating-system-level virtualization is commonly used in virtual hosting environments for securely allocating finite hardware resources among a large number of independent users. System administrators may also virtualize for consolidating server hardware by moving services on separate hosts into containers on a single host (e.g., server).
- Containers are commonly used for improved security, hardware independence, and added resource management features.
- Operating-system-level virtualization implementations capable of live migration can also be used for dynamic load balancing of containers between nodes in a cluster.
- Operating-system-level virtualization usually imposes less overhead than full virtualization because programs in virtual partitions use a normal system call interface of the operating system and do not need to be subjected to emulation or be run in an intermediate virtual machine, as is the case with full virtualization and paravirtualization. This form of virtualization also does not require hardware support for efficient performance.
- Operating-system-level virtualization is not as flexible as other virtualization approaches (e.g., containerization) since it cannot host a guest operating system different from the host one, or a different guest kernel.
- Some implementations provide file-level copy-on-write (CoW) mechanisms. Most commonly, a standard file system is shared between partitions, and those partitions that change the files automatically create copies. This is easier to back up, more space-efficient, and simpler to cache than the block-level copy-on-write schemes common on whole-system virtualization. Whole-system virtualization, however, can work with non-native file systems and create and roll back snapshots of the entire system state.
- Embodiments of the present invention disclose a computer-implemented method, a computer program product, and a system for cognitively determining and applying image updates to one or more containers.
- the computer-implemented method includes one or more computer processers detecting an updated image for a container.
- the one or more computer processors responsive to a pull request for the detected updated image, create a set of update information, wherein the set of update information includes one or more, bug fixes, features of the updated image, developer suggestions, and details of limitations introduced in the updated image.
- the one or more computer processors calculate a requirement value for the updated image.
- the one or more computer processors responsive to exceeding a requirement threshold, update the container with the updated image.
- FIG. 1 is a functional block diagram illustrating a distributed data processing environment, in accordance with an embodiment of the present invention
- FIG. 2 is a flowchart depicting operational steps of a program, on a server computer within the data processing environment of FIG. 1 , for cognitively determining and applying image updates to one or more containers, in accordance with an embodiment of the present invention
- FIG. 3 is a block diagram of components of computing device and server computer, in accordance with an embodiment of the present invention.
- Containers are prevalent in information technology and development operations, deployments, and systems. Containers allow for the rapid creation, modification, suspension, and deletion of one or more applications in a virtualized environment. Traditionally, containers are created from an image containing code and all required dependencies allowing an application to run quickly and reliably from one computing environment to another.
- Container images hereinafter images, are lightweight, standalone, executable packages of software that include code, runtime, system tools, system libraries and settings. Images can be adjusted or customized by applying a plurality of layers on top of the image. Additionally, multiple images and containers can be grouped together to form sets of containers working in unison towards a common objective, goal, or task.
- images are created and generated mirroring programming development cycles, for example, after a pull request a continuous integration system may automatically test, package, and upload an updated image to a plurality of repositories.
- automated scripts are utilized to pull new images irrespective of whether the new image is necessary, mandatory, or required allowing the introduction of defects and bugs that hinder or prevent a container from executing correctly.
- a user is never prompted or alerted to potential issues with the new image.
- Embodiments of the present invention determine an image scope on an application and whether the image scope is required by an existing application, allowing the system to selectively pull and utilize updated images. Embodiments of the present invention allow for increased system efficiency and reduced memory consumption due to this selective pulling and utilization. Embodiments of the present invention recognize that by determining, pre-pull, an impact of an updated image to an application, system efficiency and overall uptime are increased. Embodiments of the present invention identifies and determines new features and bug fixes of a detected new image to determine whether the updated image is required. Embodiments of the present invention allow for the determination of a new image, concurrently, while a related application is running, drastically reducing any downtime related to updating the application. Implementation of embodiments of the invention may take a variety of forms, and exemplary implementation details are discussed subsequently with reference to the Figures.
- FIG. 1 is a functional block diagram illustrating a distributed data processing environment, generally designated 100 , in accordance with one embodiment of the present invention.
- the term “distributed” as used in this specification describes a computer system that includes multiple, physically, distinct devices that operate together as a single computer system.
- FIG. 1 provides only an illustration of one implementation and does not imply any limitations with regard to the environments in which different embodiments may be implemented. Many modifications to the depicted environment may be made by those skilled in the art without departing from the scope of the invention as recited by the claims.
- Network 102 can be, for example, a telecommunications network, a local area network (LAN), a wide area network (WAN), such as the Internet, or a combination of the three, and can include wired, wireless, or fiber optic connections.
- Network 102 can include one or more wired and/or wireless networks that are capable of receiving and transmitting data, voice, and/or video signals, including multimedia signals that include voice, data, and video information.
- network 102 can be any combination of connections and protocols that will support communications between computing device 110 , server computer 120 , and other computing devices (not shown) within distributed data processing environment 100 .
- network 102 operates locally via wired, wireless, or optical connections and can be any combination of connections and protocols (e.g., personal area network (PAN), near field communication (NFC), laser, infrared, ultrasonic, etc.).
- PAN personal area network
- NFC near field communication
- laser infrared, ultrasonic, etc.
- Computing device 110 may be any electronic device or computing system capable of processing program instructions and receiving and sending data.
- computing device 110 may be a laptop computer, a tablet computer, a netbook computer, a personal computer (PC), a desktop computer, a personal digital assistant (PDA), a smart phone, or any programmable electronic device capable of communicating with network 102 .
- computing device 110 may represent a server computing system utilizing multiple computers as a server system, such as in a cloud computing environment.
- computing device 110 is representative of any electronic device or combination of electronic devices capable of executing machine readable program instructions as described in greater detail with regard to FIG. 3 , in accordance with embodiments of the present invention.
- computing device 110 contains application 112 .
- Application 112 is a set of one or more programs designed to carry out the operations for a specific application to assist a user to perform an activity (e.g., word processing programs, spread sheet programs, media players, web browsers).
- applications 112 is a set of one or more programs designed to assist in container management and orchestration.
- Application 112 allows a user to view all running containers, push commands into containers, add containers, remove containers, and modify containers.
- application 112 provides a web graphical interface, allowing one or more users to access and manage the system.
- application 112 provides an application programming interface (API) for creating, running, and modifying one or more containers.
- application 112 resides on computing device 110 .
- application 112 may reside on server computer 120 or on another device (not shown) connected over network 102 .
- Server computer 120 can be a standalone computing device, a management server, a web server, a mobile computing device, or any other electronic device or computing system capable of receiving, sending, and processing data.
- server computer 120 can represent a server computing system utilizing multiple computers as a server system, such as in a cloud computing environment.
- server computer 120 can be a laptop computer, a tablet computer, a netbook computer, a personal computer (PC), a desktop computer, a personal digital assistant (PDA), a smart phone, or any programmable electronic device capable of communicating with computing device 110 and other computing devices (not shown) within distributed data processing environment 100 via network 102 .
- PC personal computer
- PDA personal digital assistant
- server computer 120 represents a computing system utilizing clustered computers and components (e.g., database server computers, application server computers, etc.) that act as a single pool of seamless resources when accessed within distributed data processing environment 100 .
- server computer 120 includes registry 122 and program 150 .
- server computer 120 may contain other applications, databases, programs, etc. which have not been depicted in distributed data processing environment 100 .
- Server computer 120 may include internal and external hardware components, as depicted and described in further detail with respect to FIG. 3 .
- Registry 122 is a registry and repository for data used by program 150 .
- registry 122 resides on server computer 120 .
- registry 122 may reside on computing device 110 or elsewhere within distributed data processing environment 100 provided program 150 has access to registry 122 .
- a database is an organized collection of data.
- Registry 122 can be implemented with any type of storage device capable of storing data and configuration files that can be accessed and utilized by program 150 , such as a database server, a hard disk drive, or a flash memory.
- registry 122 stores data used by program 150 , such as historical images, updates, associated metadata, associated bug reports, pending pull requests, and development milestone plans.
- Program 150 is a program for cognitively determining and applying image updates to one or more containers.
- program 150 is a standalone software program.
- the functionality of program 150 , or any combination programs thereof, may be integrated into a single software program.
- program 150 may be located on separate computing devices (not depicted) but can still communicate over network 102 .
- client versions of program 150 resides on computing device 110 and/or any other computing device (not depicted) within distributed data processing environment 100 .
- Program 150 is depicted and described in further detail with respect to FIG. 2 .
- the present invention may contain various accessible data sources, such as registry 122 , that may include personal storage devices, data, content, or information the user wishes not to be processed.
- Processing refers to any, automated or unautomated, operation or set of operations such as collection, recording, organization, structuring, storage, adaptation, alteration, retrieval, consultation, use, disclosure by transmission, dissemination, or otherwise making available, combination, restriction, erasure, or destruction performed on personal data.
- Program 150 provides informed consent, with notice of the collection of personal data, allowing the user to opt in or opt out of processing personal data. Consent can take several forms. Opt-in consent can impose on the user to take an affirmative action before the personal data is processed.
- opt-out consent can impose on the user to take an affirmative action to prevent the processing of personal data before the data is processed.
- Program 150 enables the authorized and secure processing of user information, such as tracking information, as well as personal data, such as personally identifying information or sensitive personal information.
- Program 150 provides information regarding the personal data and the nature (e.g., type, scope, purpose, duration, etc.) of the processing.
- Program 150 provides the user with copies of stored personal data.
- Program 150 allows the correction or completion of incorrect or incomplete personal data.
- Program 150 allows the immediate deletion of personal data.
- FIG. 2 is a flowchart depicting operational steps of program 150 for cognitively determining and applying image updates to one or more containers, in accordance with an embodiment of the present invention.
- Program 150 detects an image pull (step 202 ).
- Program 150 monitors registry 122 or is notified by registry 122 when an image is pushed (e.g., uploaded, packaged, etc.) or when an image stored within registry 122 is modified.
- program 150 acts as an inline proxy and/or a transparent proxy ‘sitting’ in between a computing device and the destination registry (e.g., registry 122 ). In this embodiment, all network traffic to and from the computing device and registry 122 will travel through program 150 .
- program 150 monitors application (e.g., application 112 ) activity to determine a network request (e.g., image pull, request, etc.).
- program 150 identifies an image pull and pauses, delays, or halts the pull (e.g., image storage) until program 150 can identify image parameters and determine if the image is required, as discussed below.
- program 150 receives a notification, along with associated information and metadata, regarding a new pushed, updated, or stored image.
- program 150 transmits a request (e.g., command, etc.) to a plurality of platform-as-a-service products and container management/orchestration applications, known in the art, to return or output a list of all updated images, in a family of images (e.g., past revisions, branches, clones, etc.).
- program 150 transmits a pull request (e.g., command, etc.) to a plurality of platform-as-a-service products and container management/orchestration applications, known in the art, to return or output a list of all containers and associated information such as container id, container name, status (e.g., running, paused, stopped, etc.), base image, utilized ports, container location, container health, container network, any associated labels or tags, container creation date, and related or linked containers.
- program 150 sends a list command to a container management daemon to output a list of all available containers and program 150 may store said information in registry 122 .
- program 150 sends tags in addition to the request to constrain the output.
- program 150 requests to only receive information regarding running containers.
- program 150 monitors an image registry (e.g., registry 122 ) for any updated images related to the plurality of a containers running on a system.
- program 150 identifies one or more features associated with a current container.
- program 150 determines that there is an updated image (decision step 204 , yes branch), then program 150 identifies updated image parameters (step 206 ).
- Program 150 identifies updated image parameters.
- program 150 scans (e.g., depth-first scanning, etc.) an image filesystem, identifying all subcomponents (e.g., dependencies, subprograms, and sub-containers) subfiles and subfolders contained within a container.
- program 150 identifies said subcomponents by creating one or more sets of filesystem information such as filenames, folder names, parent folders, subfolders, associated permissions, creation dates, modified dates, and associated metadata.
- program 150 scans through each folder contained in or associated with an image.
- program 150 begins at the root folder (e.g., “/”) and recursively follows each subfolder down to the its “leaves” or instances where no subfolders or files exist.
- program 150 creates a set of update information that includes changelogs, bug fixes, new introduced features, developer suggestions, and details of any existing limitations.
- Program 150 records all the instances, including associated information and metadata, developing a map of the file structure of the container. Responsive to program 150 completing a scanning operation, program 150 may compare the recorded image information with the container currently in use. Here, program 150 maintains a list of image differences including all changed files and associated metadata. In an embodiment, program 150 utilizes the list of identified software to identify and retrieve patch and changelog information describing one or more changes in the updated image and/or an overall purpose for the updated image. For example, program 150 identifies an updated image and from an associated changelog, program 150 , utilizing natural language processing techniques, parses the changelog and identifies that the update is an image rebase.
- program 150 determines that there is not an updated image (decision step 204 , no branch)
- program 150 deploys an image (step 210 ), as described below.
- program 150 reinstates or unsuspends a previously running container.
- program 150 redeploys the original application or container.
- Program 150 determines that the updated image is required (step 208 ).
- Program 150 determines the scope (e.g., intention) of an update and reconciles said scope with the purpose of the container.
- Program 150 utilizes the update parameters, identified in step 206 , contained within a set of update information to determine whether an updated image is required.
- the term “require(s)” e.g., mandatory, compulsory, recommended, etc.
- Program 150 identifies a purpose and/or one or more features associated with a current container.
- program 150 receives, retrieves, or identifies one or more functions associated with a container and/or associated image.
- an example container is utilized to host a web server and an associated database.
- program 150 determines that the purpose of the container is to publicly serve one or more webpages.
- program 150 determines one or more features associated with the purpose, for example ability to be accessed externally, ability to serve webpages, ability to securely access the database, and additional security considerations (e.g., file permissions, database permissions, etc.).
- program 150 weighs each determined feature of the current container to determine the most critical features associated with a determined container purpose. For example, an ability to publicly present web content is a highly weighted feature of a web server container.
- Program 150 compares the determined features of a current container with a created set of update information in order to calculate a requirement value representing a degree of benefit or enchantment that an update would confer a current container.
- a requirement value is a numerical score or probability.
- program 150 utilizes the aggregation of all the weighed features to calculates a requirement value.
- program 150 maintains a predetermined requirement threshold. In this embodiment, if a requirement value exceeds the requirement threshold, then program 150 determines that the update image is required and mandatory.
- program 150 automatically updates and deploys an updated image if the update exceeds a requirement threshold. Alternatively, if the requirement value does not exceed the requirement threshold, then program 150 does not alter a current container or program 150 presents the update as a suggestion to a user.
- Program 150 presents, displays, or prompts a user with one or more update suggestions.
- the update suggestion contains information regarding the suggested container update, the effect the update will have on other linked containers, details regarding expected container/host performance, and possible ramifications such as security considerations and potential broken file dependencies.
- program 150 notifies or prompts the user for a response (e.g., update selection).
- program 150 presents a maintained list of all update suggestions along with associated information.
- program 150 presents the list of updates to one or more users through a graphical user interface (not depicted).
- Said graphical user interface may exist on a utilized computing device (not depicted), allowing the user to modify the layers due to errors, corrections, or changes in the image.
- program 150 presents the list through the command line, stdout, or terminal view of the host system.
- program 150 may generate, adjust, modify, and/or transform the appearance of a plurality (e.g., group consisting of) of stylistic elements of presented updates.
- said plurality may include; adjustments to font, font size, character style (e.g., bold, italics, font color, background color, superscript, subscript, capitalization, etc.), general transparency, relative transparency, etc.
- program 150 applies a “bold” adjustment to a mandatory update.
- Program 150 may pause or suspend until a user response or update selection is received.
- program 150 maintains a timeout function or threshold that controls how long program 150 waits, suspends, or pauses for the user response.
- program 150 automatically selects (e.g., determines, ranks, and selects, etc.) an update.
- Program 150 deploys image (step 210 ). Responsive to program 150 determining that the updated is required or mandatory, then program 150 pulls, receives, or stores the updated image, detailed in the above steps, from registry 122 or one or more image repositories, into one or more production environments or containers. In an embodiment, program 150 , automatically, deploys the updated image and associated container to another host or cluster of hosts. In an embodiment, program 150 patches the layer (e.g., images) with respective vulnerability patches or fixes based on the identified vulnerabilities. In this embodiment, program 150 adjusts the file structure of a container based on the modifications (e.g., patches, hardening, etc.). In various embodiments, program 150 automatically hardens a container after the software has been identified and reported.
- the layer e.g., images
- program 150 adjusts the file structure of a container based on the modifications (e.g., patches, hardening, etc.). In various embodiments, program 150 automatically hardens a container after the software has been identified and reported.
- program 150 retrieves and utilizes best practices associated with the software or the type of software. For example, if program 150 identifies a webserver on a container, then program 150 may implement practices on the container that restrict the public viewing of the root folder of the webserver.
- hardening a container includes, but is not limited to, downgrading to a non-privileged user, limiting resource usage, sandboxing critical processes, limiting volume mounts, and binding privileged ports.
- program 150 automatically pushes the modified container or container image (e.g., modified image based on the VFS) to an image registry.
- program 150 automatically deploys the modified container to another host or cluster of hosts.
- FIG. 3 depicts a block diagram of components of computing device 110 and server computer 120 in accordance with an illustrative embodiment of the present invention. It should be appreciated that FIG. 3 provides only an illustration of one implementation and does not imply any limitations with regard to the environments in which different embodiments may be implemented. Many modifications to the depicted environment may be made.
- Computing device 110 and server computer 120 includes communications fabric 304 , which provides communications between cache 303 , memory 302 , persistent storage 305 , communications unit 307 , and input/output (I/O) interface(s) 306 .
- Communications fabric 304 can be implemented with any architecture designed for passing data and/or control information between processors (such as microprocessors, communications, and network processors, etc.), system memory, peripheral devices, and any other hardware components within a system.
- processors such as microprocessors, communications, and network processors, etc.
- Communications fabric 304 can be implemented with one or more buses or a crossbar switch.
- Memory 302 and persistent storage 305 are computer readable storage media.
- memory 302 includes random access memory (RAM).
- RAM random access memory
- memory 302 can include any suitable volatile or non-volatile computer readable storage media.
- Cache 303 is a fast memory that enhances the performance of computer processor(s) 301 by holding recently accessed data, and data near accessed data, from memory 302 .
- persistent storage 305 includes a magnetic hard disk drive.
- persistent storage 305 can include a solid-state hard drive, a semiconductor storage device, a read-only memory (ROM), an erasable programmable read-only memory (EPROM), a flash memory, or any other computer readable storage media that is capable of storing program instructions or digital information.
- the media used by persistent storage 305 may also be removable.
- a removable hard drive may be used for persistent storage 305 .
- Other examples include optical and magnetic disks, thumb drives, and smart cards that are inserted into a drive for transfer onto another computer readable storage medium that is also part of persistent storage 305 .
- Communications unit 307 in these examples, provides for communications with other data processing systems or devices.
- communications unit 307 includes one or more network interface cards.
- Communications unit 307 may provide communications through the use of either or both physical and wireless communications links.
- Program 150 may be downloaded to persistent storage 305 through communications unit 307 .
- I/O interface(s) 306 allows for input and output of data with other devices that may be connected, respectively, to computing device 110 and server computer 120 .
- I/O interface(s) 306 may provide a connection to external device(s) 308 , such as a keyboard, a keypad, a touch screen, and/or some other suitable input device.
- External devices 308 can also include portable computer readable storage media such as, for example, thumb drives, portable optical or magnetic disks, and memory cards.
- Software and data used to practice embodiments of the present invention, e.g., program 150 can be stored on such portable computer readable storage media and can be loaded onto persistent storage 305 via I/O interface(s) 306 .
- I/O interface(s) 306 also connect to a display 309 .
- Display 309 provides a mechanism to display data to a user and may be, for example, a computer monitor.
- the present invention may be a system, a method, and/or a computer program product.
- the computer program product may include a computer readable storage medium (or media) having computer readable program instructions thereon for causing a processor to carry out aspects of the present invention.
- the computer readable storage medium can be a tangible device that can retain and store instructions for use by an instruction execution device.
- the computer readable storage medium may be, for example, but is not limited to, an electronic storage device, a magnetic storage device, an optical storage device, an electromagnetic storage device, a semiconductor storage device, or any suitable combination of the foregoing.
- a non-exhaustive list of more specific examples of the computer readable storage medium includes the following: a portable computer diskette, a hard disk, a random access memory (RAM), a read-only memory (ROM), an erasable programmable read-only memory (EPROM or Flash memory), a static random access memory (SRAM), a portable compact disc read-only memory (CD-ROM), a digital versatile disk (DVD), a memory stick, a floppy disk, a mechanically encoded device such as punch-cards or raised structures in a groove having instructions recorded thereon, and any suitable combination of the foregoing.
- RAM random access memory
- ROM read-only memory
- EPROM or Flash memory erasable programmable read-only memory
- SRAM static random access memory
- CD-ROM compact disc read-only memory
- DVD digital versatile disk
- memory stick a floppy disk
- a mechanically encoded device such as punch-cards or raised structures in a groove having instructions recorded thereon
- a computer readable storage medium is not to be construed as being transitory signals per se, such as radio waves or other freely propagating electromagnetic waves, electromagnetic waves propagating through a waveguide or other transmission media (e.g., light pulses passing through a fiber-optic cable), or electrical signals transmitted through a wire.
- Computer readable program instructions described herein can be downloaded to respective computing/processing devices from a computer readable storage medium or to an external computer or external storage device via a network, for example, the Internet, a local area network, a wide area network and/or a wireless network.
- the network may comprise copper transmission cables, optical transmission fibers, wireless transmission, routers, firewalls, switches, gateway computers and/or edge servers.
- a network adapter card or network interface in each computing/processing device receives computer readable program instructions from the network and forwards the computer readable program instructions for storage in a computer readable storage medium within the respective computing/processing device.
- Computer readable program instructions for carrying out operations of the present invention may be assembler instructions, instruction-set-architecture (ISA) instructions, machine instructions, machine dependent instructions, microcode, firmware instructions, state-setting data, or either source code or object code written in any combination of one or more programming languages, including an object oriented programming language such as Smalltalk, C++ or the like, conventional procedural programming languages, such as the “C” programming language or similar programming languages, and quantum programming languages such as the “Q” programming language, Q#, quantum computation language (QCL) or similar programming languages, low-level programming languages, such as the assembly language or similar programming languages.
- ISA instruction-set-architecture
- machine instructions machine dependent instructions
- microcode firmware instructions
- state-setting data or either source code or object code written in any combination of one or more programming languages, including an object oriented programming language such as Smalltalk, C++ or the like, conventional procedural programming languages, such as the “C” programming language or similar programming languages, and quantum programming languages such as the “Q” programming language, Q#, quantum computation language (QCL) or
- the computer readable program instructions may execute entirely on the user's computer, partly on the user's computer, as a stand-alone software package, partly on the user's computer and partly on a remote computer or entirely on the remote computer or server.
- the remote computer may be connected to the user's computer through any type of network, including a local area network (LAN) or a wide area network (WAN), or the connection may be made to an external computer (for example, through the Internet using an Internet Service Provider).
- LAN local area network
- WAN wide area network
- Internet Service Provider for example, AT&T, MCI, Sprint, EarthLink, MSN, GTE, etc.
- electronic circuitry including, for example, programmable logic circuitry, field-programmable gate arrays (FPGA), or programmable logic arrays (PLA) may execute the computer readable program instructions by utilizing state information of the computer readable program instructions to personalize the electronic circuitry, in order to perform aspects of the present invention.
- FPGA field-programmable gate arrays
- PLA programmable logic arrays
- These computer readable program instructions may be provided to a processor of a general purpose computer, special purpose computer, or other programmable data processing apparatus to produce a machine, such that the instructions, which execute via the processor of the computer or other programmable data processing apparatus, create means for implementing the functions/acts specified in the flowchart and/or block diagram block or blocks.
- These computer readable program instructions may also be stored in a computer readable storage medium that can direct a computer, a programmable data processing apparatus, and/or other devices to function in a particular manner, such that the computer readable storage medium having instructions stored therein comprises an article of manufacture including instructions which implement aspects of the function/act specified in the flowchart and/or block diagram block or blocks.
- the computer readable program instructions may also be loaded onto a computer, other programmable data processing apparatus, or other device to cause a series of operational steps to be performed on the computer, other programmable apparatus or other device to produce a computer implemented process, such that the instructions which execute on the computer, other programmable apparatus, or other device implement the functions/acts specified in the flowchart and/or block diagram block or blocks.
- each block in the flowchart or block diagrams may represent a module, segment, or portion of instructions, which comprises one or more executable instructions for implementing the specified logical function(s).
- the functions noted in the block may occur out of the order noted in the figures. For example, two blocks shown in succession may, in fact, be executed substantially concurrently, or the blocks may sometimes be executed in the reverse order, depending upon the functionality involved.
Landscapes
- Engineering & Computer Science (AREA)
- Software Systems (AREA)
- Theoretical Computer Science (AREA)
- General Engineering & Computer Science (AREA)
- Physics & Mathematics (AREA)
- General Physics & Mathematics (AREA)
- Computer Security & Cryptography (AREA)
- Computer Networks & Wireless Communication (AREA)
- Signal Processing (AREA)
- Stored Programmes (AREA)
Abstract
Description
- The present invention relates generally to the field of operating system virtualization, and more particularly to containerization.
- OS-level virtualization refers to an operating system paradigm in which a kernel allows an existence of multiple isolated user-space instances. Such instances, called containers, zones, virtual private servers, partitions, virtual environments, virtual kernel, or jails, may look like real computers from the perspective of the contained programs. A computer program running on an ordinary operating system can see all resources (connected devices, files and folders, network shares, CPU power, quantifiable hardware capabilities) of that computer, however, programs running inside of a container can only see the contents of the container and devices assigned to the container. Operating-system-level virtualization is commonly used in virtual hosting environments for securely allocating finite hardware resources among a large number of independent users. System administrators may also virtualize for consolidating server hardware by moving services on separate hosts into containers on a single host (e.g., server). Containers are commonly used for improved security, hardware independence, and added resource management features. Operating-system-level virtualization implementations capable of live migration can also be used for dynamic load balancing of containers between nodes in a cluster. Operating-system-level virtualization usually imposes less overhead than full virtualization because programs in virtual partitions use a normal system call interface of the operating system and do not need to be subjected to emulation or be run in an intermediate virtual machine, as is the case with full virtualization and paravirtualization. This form of virtualization also does not require hardware support for efficient performance.
- Operating-system-level virtualization is not as flexible as other virtualization approaches (e.g., containerization) since it cannot host a guest operating system different from the host one, or a different guest kernel. Some implementations provide file-level copy-on-write (CoW) mechanisms. Most commonly, a standard file system is shared between partitions, and those partitions that change the files automatically create copies. This is easier to back up, more space-efficient, and simpler to cache than the block-level copy-on-write schemes common on whole-system virtualization. Whole-system virtualization, however, can work with non-native file systems and create and roll back snapshots of the entire system state.
- Embodiments of the present invention disclose a computer-implemented method, a computer program product, and a system for cognitively determining and applying image updates to one or more containers. The computer-implemented method includes one or more computer processers detecting an updated image for a container. The one or more computer processors, responsive to a pull request for the detected updated image, create a set of update information, wherein the set of update information includes one or more, bug fixes, features of the updated image, developer suggestions, and details of limitations introduced in the updated image. The one or more computer processors calculate a requirement value for the updated image. The one or more computer processors, responsive to exceeding a requirement threshold, update the container with the updated image.
-
FIG. 1 is a functional block diagram illustrating a distributed data processing environment, in accordance with an embodiment of the present invention; -
FIG. 2 is a flowchart depicting operational steps of a program, on a server computer within the data processing environment ofFIG. 1 , for cognitively determining and applying image updates to one or more containers, in accordance with an embodiment of the present invention; and -
FIG. 3 is a block diagram of components of computing device and server computer, in accordance with an embodiment of the present invention. - Containers are prevalent in information technology and development operations, deployments, and systems. Containers allow for the rapid creation, modification, suspension, and deletion of one or more applications in a virtualized environment. Traditionally, containers are created from an image containing code and all required dependencies allowing an application to run quickly and reliably from one computing environment to another. Container images, hereinafter images, are lightweight, standalone, executable packages of software that include code, runtime, system tools, system libraries and settings. Images can be adjusted or customized by applying a plurality of layers on top of the image. Additionally, multiple images and containers can be grouped together to form sets of containers working in unison towards a common objective, goal, or task. Unfortunately, the increased ease and proliferation of containers allows significant risk of defective images and, subsequent, containers that may contain bugs, security vulnerabilities, and exploits. Commonly, images are created and generated mirroring programming development cycles, for example, after a pull request a continuous integration system may automatically test, package, and upload an updated image to a plurality of repositories. Commonly, automated scripts are utilized to pull new images irrespective of whether the new image is necessary, mandatory, or required allowing the introduction of defects and bugs that hinder or prevent a container from executing correctly. Furthermore, when pulling one or more new images, a user is never prompted or alerted to potential issues with the new image.
- Embodiments of the present invention determine an image scope on an application and whether the image scope is required by an existing application, allowing the system to selectively pull and utilize updated images. Embodiments of the present invention allow for increased system efficiency and reduced memory consumption due to this selective pulling and utilization. Embodiments of the present invention recognize that by determining, pre-pull, an impact of an updated image to an application, system efficiency and overall uptime are increased. Embodiments of the present invention identifies and determines new features and bug fixes of a detected new image to determine whether the updated image is required. Embodiments of the present invention allow for the determination of a new image, concurrently, while a related application is running, drastically reducing any downtime related to updating the application. Implementation of embodiments of the invention may take a variety of forms, and exemplary implementation details are discussed subsequently with reference to the Figures.
- The present invention will now be described in detail with reference to the Figures.
-
FIG. 1 is a functional block diagram illustrating a distributed data processing environment, generally designated 100, in accordance with one embodiment of the present invention. The term “distributed” as used in this specification describes a computer system that includes multiple, physically, distinct devices that operate together as a single computer system.FIG. 1 provides only an illustration of one implementation and does not imply any limitations with regard to the environments in which different embodiments may be implemented. Many modifications to the depicted environment may be made by those skilled in the art without departing from the scope of the invention as recited by the claims. - Distributed
data processing environment 100 includescomputing device 110 andserver computer 120 interconnected overnetwork 102.Network 102 can be, for example, a telecommunications network, a local area network (LAN), a wide area network (WAN), such as the Internet, or a combination of the three, and can include wired, wireless, or fiber optic connections.Network 102 can include one or more wired and/or wireless networks that are capable of receiving and transmitting data, voice, and/or video signals, including multimedia signals that include voice, data, and video information. In general,network 102 can be any combination of connections and protocols that will support communications betweencomputing device 110,server computer 120, and other computing devices (not shown) within distributeddata processing environment 100. In various embodiments,network 102 operates locally via wired, wireless, or optical connections and can be any combination of connections and protocols (e.g., personal area network (PAN), near field communication (NFC), laser, infrared, ultrasonic, etc.). -
Computing device 110 may be any electronic device or computing system capable of processing program instructions and receiving and sending data. In some embodiments,computing device 110 may be a laptop computer, a tablet computer, a netbook computer, a personal computer (PC), a desktop computer, a personal digital assistant (PDA), a smart phone, or any programmable electronic device capable of communicating withnetwork 102. In other embodiments,computing device 110 may represent a server computing system utilizing multiple computers as a server system, such as in a cloud computing environment. In general,computing device 110 is representative of any electronic device or combination of electronic devices capable of executing machine readable program instructions as described in greater detail with regard toFIG. 3 , in accordance with embodiments of the present invention. In an embodiment,computing device 110 containsapplication 112. -
Application 112 is a set of one or more programs designed to carry out the operations for a specific application to assist a user to perform an activity (e.g., word processing programs, spread sheet programs, media players, web browsers). In the depicted embodiment,applications 112 is a set of one or more programs designed to assist in container management and orchestration.Application 112 allows a user to view all running containers, push commands into containers, add containers, remove containers, and modify containers. In an embodiment,application 112 provides a web graphical interface, allowing one or more users to access and manage the system. In another embodiment,application 112 provides an application programming interface (API) for creating, running, and modifying one or more containers. In the depicted embodiment,application 112 resides oncomputing device 110. In another embodiment,application 112 may reside onserver computer 120 or on another device (not shown) connected overnetwork 102. -
Server computer 120 can be a standalone computing device, a management server, a web server, a mobile computing device, or any other electronic device or computing system capable of receiving, sending, and processing data. In other embodiments,server computer 120 can represent a server computing system utilizing multiple computers as a server system, such as in a cloud computing environment. In another embodiment,server computer 120 can be a laptop computer, a tablet computer, a netbook computer, a personal computer (PC), a desktop computer, a personal digital assistant (PDA), a smart phone, or any programmable electronic device capable of communicating withcomputing device 110 and other computing devices (not shown) within distributeddata processing environment 100 vianetwork 102. In another embodiment,server computer 120 represents a computing system utilizing clustered computers and components (e.g., database server computers, application server computers, etc.) that act as a single pool of seamless resources when accessed within distributeddata processing environment 100. In the depicted embodiment,server computer 120 includesregistry 122 andprogram 150. In other embodiments,server computer 120 may contain other applications, databases, programs, etc. which have not been depicted in distributeddata processing environment 100.Server computer 120 may include internal and external hardware components, as depicted and described in further detail with respect toFIG. 3 . -
Registry 122 is a registry and repository for data used byprogram 150. In the depicted embodiment,registry 122 resides onserver computer 120. In another embodiment,registry 122 may reside oncomputing device 110 or elsewhere within distributeddata processing environment 100 providedprogram 150 has access toregistry 122. A database is an organized collection of data.Registry 122 can be implemented with any type of storage device capable of storing data and configuration files that can be accessed and utilized byprogram 150, such as a database server, a hard disk drive, or a flash memory. In an embodiment,registry 122 stores data used byprogram 150, such as historical images, updates, associated metadata, associated bug reports, pending pull requests, and development milestone plans. -
Program 150 is a program for cognitively determining and applying image updates to one or more containers. In the depicted embodiment,program 150 is a standalone software program. In another embodiment, the functionality ofprogram 150, or any combination programs thereof, may be integrated into a single software program. In some embodiments,program 150 may be located on separate computing devices (not depicted) but can still communicate overnetwork 102. In various embodiments, client versions ofprogram 150 resides oncomputing device 110 and/or any other computing device (not depicted) within distributeddata processing environment 100.Program 150 is depicted and described in further detail with respect toFIG. 2 . - The present invention may contain various accessible data sources, such as
registry 122, that may include personal storage devices, data, content, or information the user wishes not to be processed. Processing refers to any, automated or unautomated, operation or set of operations such as collection, recording, organization, structuring, storage, adaptation, alteration, retrieval, consultation, use, disclosure by transmission, dissemination, or otherwise making available, combination, restriction, erasure, or destruction performed on personal data.Program 150 provides informed consent, with notice of the collection of personal data, allowing the user to opt in or opt out of processing personal data. Consent can take several forms. Opt-in consent can impose on the user to take an affirmative action before the personal data is processed. Alternatively, opt-out consent can impose on the user to take an affirmative action to prevent the processing of personal data before the data is processed.Program 150 enables the authorized and secure processing of user information, such as tracking information, as well as personal data, such as personally identifying information or sensitive personal information.Program 150 provides information regarding the personal data and the nature (e.g., type, scope, purpose, duration, etc.) of the processing.Program 150 provides the user with copies of stored personal data.Program 150 allows the correction or completion of incorrect or incomplete personal data.Program 150 allows the immediate deletion of personal data. -
FIG. 2 is a flowchart depicting operational steps ofprogram 150 for cognitively determining and applying image updates to one or more containers, in accordance with an embodiment of the present invention. -
Program 150 detects an image pull (step 202).Program 150monitors registry 122 or is notified byregistry 122 when an image is pushed (e.g., uploaded, packaged, etc.) or when an image stored withinregistry 122 is modified. In various embodiments,program 150 acts as an inline proxy and/or a transparent proxy ‘sitting’ in between a computing device and the destination registry (e.g., registry 122). In this embodiment, all network traffic to and from the computing device andregistry 122 will travel throughprogram 150. In another embodiment,program 150 monitors application (e.g., application 112) activity to determine a network request (e.g., image pull, request, etc.). In an embodiment,program 150 identifies an image pull and pauses, delays, or halts the pull (e.g., image storage) untilprogram 150 can identify image parameters and determine if the image is required, as discussed below. In various embodiments,program 150 receives a notification, along with associated information and metadata, regarding a new pushed, updated, or stored image. In an embodiment,program 150 transmits a request (e.g., command, etc.) to a plurality of platform-as-a-service products and container management/orchestration applications, known in the art, to return or output a list of all updated images, in a family of images (e.g., past revisions, branches, clones, etc.). - In an embodiment,
program 150 transmits a pull request (e.g., command, etc.) to a plurality of platform-as-a-service products and container management/orchestration applications, known in the art, to return or output a list of all containers and associated information such as container id, container name, status (e.g., running, paused, stopped, etc.), base image, utilized ports, container location, container health, container network, any associated labels or tags, container creation date, and related or linked containers. For example,program 150 sends a list command to a container management daemon to output a list of all available containers andprogram 150 may store said information inregistry 122. In various embodiments,program 150 sends tags in addition to the request to constrain the output. For example,program 150 requests to only receive information regarding running containers. In this embodiment,program 150 monitors an image registry (e.g., registry 122) for any updated images related to the plurality of a containers running on a system. In an embodiment,program 150 identifies one or more features associated with a current container. - If
program 150 determines that there is an updated image (decision step 204, yes branch), thenprogram 150 identifies updated image parameters (step 206).Program 150 identifies updated image parameters. In an embodiment,program 150 scans (e.g., depth-first scanning, etc.) an image filesystem, identifying all subcomponents (e.g., dependencies, subprograms, and sub-containers) subfiles and subfolders contained within a container. In this embodiment,program 150 identifies said subcomponents by creating one or more sets of filesystem information such as filenames, folder names, parent folders, subfolders, associated permissions, creation dates, modified dates, and associated metadata. In another embodiment,program 150 scans through each folder contained in or associated with an image. In this embodiment,program 150 begins at the root folder (e.g., “/”) and recursively follows each subfolder down to the its “leaves” or instances where no subfolders or files exist. In various embodiments,program 150 creates a set of update information that includes changelogs, bug fixes, new introduced features, developer suggestions, and details of any existing limitations. - Program 150 records all the instances, including associated information and metadata, developing a map of the file structure of the container. Responsive to program 150 completing a scanning operation,
program 150 may compare the recorded image information with the container currently in use. Here,program 150 maintains a list of image differences including all changed files and associated metadata. In an embodiment,program 150 utilizes the list of identified software to identify and retrieve patch and changelog information describing one or more changes in the updated image and/or an overall purpose for the updated image. For example,program 150 identifies an updated image and from an associated changelog,program 150, utilizing natural language processing techniques, parses the changelog and identifies that the update is an image rebase. - If
program 150 determines that there is not an updated image (decision step 204, no branch), thenprogram 150 deploys an image (step 210), as described below. In an embodiment,program 150 reinstates or unsuspends a previously running container. In another embodiment,program 150 redeploys the original application or container. -
Program 150 determines that the updated image is required (step 208).Program 150 determines the scope (e.g., intention) of an update and reconciles said scope with the purpose of the container.Program 150 utilizes the update parameters, identified instep 206, contained within a set of update information to determine whether an updated image is required. In an embodiment, the term “require(s)” (e.g., mandatory, compulsory, recommended, etc.) represents a change (e.g., update, patch, version, etc.) containing a fix for one or more features utilized by a current container, image, or application.Program 150 identifies a purpose and/or one or more features associated with a current container. In this embodiment,program 150 receives, retrieves, or identifies one or more functions associated with a container and/or associated image. For example, an example container is utilized to host a web server and an associated database. Here,program 150 determines that the purpose of the container is to publicly serve one or more webpages. Additionally,program 150 determines one or more features associated with the purpose, for example ability to be accessed externally, ability to serve webpages, ability to securely access the database, and additional security considerations (e.g., file permissions, database permissions, etc.). In a further embodiment,program 150 weighs each determined feature of the current container to determine the most critical features associated with a determined container purpose. For example, an ability to publicly present web content is a highly weighted feature of a web server container. -
Program 150, then, compares the determined features of a current container with a created set of update information in order to calculate a requirement value representing a degree of benefit or enchantment that an update would confer a current container. In various embodiments, a requirement value is a numerical score or probability. In an embodiment,program 150 utilizes the aggregation of all the weighed features to calculates a requirement value. In another embodiment,program 150 maintains a predetermined requirement threshold. In this embodiment, if a requirement value exceeds the requirement threshold, thenprogram 150 determines that the update image is required and mandatory. In an embodiment,program 150 automatically updates and deploys an updated image if the update exceeds a requirement threshold. Alternatively, if the requirement value does not exceed the requirement threshold, thenprogram 150 does not alter a current container orprogram 150 presents the update as a suggestion to a user. -
Program 150, then, presents, displays, or prompts a user with one or more update suggestions. In an embodiment, the update suggestion contains information regarding the suggested container update, the effect the update will have on other linked containers, details regarding expected container/host performance, and possible ramifications such as security considerations and potential broken file dependencies. In an embodiment,program 150 notifies or prompts the user for a response (e.g., update selection). In other embodiments,program 150 presents a maintained list of all update suggestions along with associated information. In these embodiments,program 150 presents the list of updates to one or more users through a graphical user interface (not depicted). Said graphical user interface may exist on a utilized computing device (not depicted), allowing the user to modify the layers due to errors, corrections, or changes in the image. In another embodiment,program 150 presents the list through the command line, stdout, or terminal view of the host system. In various embodiments,program 150 may generate, adjust, modify, and/or transform the appearance of a plurality (e.g., group consisting of) of stylistic elements of presented updates. In an embodiment, said plurality may include; adjustments to font, font size, character style (e.g., bold, italics, font color, background color, superscript, subscript, capitalization, etc.), general transparency, relative transparency, etc. For example,program 150 applies a “bold” adjustment to a mandatory update.Program 150 may pause or suspend until a user response or update selection is received. In an embodiment,program 150 maintains a timeout function or threshold that controls howlong program 150 waits, suspends, or pauses for the user response. In this embodiment, if the user does not respond within a specified duration, then program 150 automatically selects (e.g., determines, ranks, and selects, etc.) an update. -
Program 150 deploys image (step 210). Responsive to program 150 determining that the updated is required or mandatory, thenprogram 150 pulls, receives, or stores the updated image, detailed in the above steps, fromregistry 122 or one or more image repositories, into one or more production environments or containers. In an embodiment,program 150, automatically, deploys the updated image and associated container to another host or cluster of hosts. In an embodiment,program 150 patches the layer (e.g., images) with respective vulnerability patches or fixes based on the identified vulnerabilities. In this embodiment,program 150 adjusts the file structure of a container based on the modifications (e.g., patches, hardening, etc.). In various embodiments,program 150 automatically hardens a container after the software has been identified and reported. In this embodiment,program 150 retrieves and utilizes best practices associated with the software or the type of software. For example, ifprogram 150 identifies a webserver on a container, then program 150 may implement practices on the container that restrict the public viewing of the root folder of the webserver. In various embodiments, hardening a container includes, but is not limited to, downgrading to a non-privileged user, limiting resource usage, sandboxing critical processes, limiting volume mounts, and binding privileged ports. In another embodiment,program 150 automatically pushes the modified container or container image (e.g., modified image based on the VFS) to an image registry. In another embodiment,program 150 automatically deploys the modified container to another host or cluster of hosts. -
FIG. 3 depicts a block diagram of components ofcomputing device 110 andserver computer 120 in accordance with an illustrative embodiment of the present invention. It should be appreciated thatFIG. 3 provides only an illustration of one implementation and does not imply any limitations with regard to the environments in which different embodiments may be implemented. Many modifications to the depicted environment may be made. -
Computing device 110 andserver computer 120 includescommunications fabric 304, which provides communications betweencache 303,memory 302,persistent storage 305,communications unit 307, and input/output (I/O) interface(s) 306.Communications fabric 304 can be implemented with any architecture designed for passing data and/or control information between processors (such as microprocessors, communications, and network processors, etc.), system memory, peripheral devices, and any other hardware components within a system. For example,communications fabric 304 can be implemented with one or more buses or a crossbar switch. -
Memory 302 andpersistent storage 305 are computer readable storage media. In this embodiment,memory 302 includes random access memory (RAM). In general,memory 302 can include any suitable volatile or non-volatile computer readable storage media.Cache 303 is a fast memory that enhances the performance of computer processor(s) 301 by holding recently accessed data, and data near accessed data, frommemory 302. -
Program 150 may be stored inpersistent storage 305 and inmemory 302 for execution by one or more of the respective computer processor(s) 301 viacache 303. In an embodiment,persistent storage 305 includes a magnetic hard disk drive. Alternatively, or in addition to a magnetic hard disk drive,persistent storage 305 can include a solid-state hard drive, a semiconductor storage device, a read-only memory (ROM), an erasable programmable read-only memory (EPROM), a flash memory, or any other computer readable storage media that is capable of storing program instructions or digital information. - The media used by
persistent storage 305 may also be removable. For example, a removable hard drive may be used forpersistent storage 305. Other examples include optical and magnetic disks, thumb drives, and smart cards that are inserted into a drive for transfer onto another computer readable storage medium that is also part ofpersistent storage 305. -
Communications unit 307, in these examples, provides for communications with other data processing systems or devices. In these examples,communications unit 307 includes one or more network interface cards.Communications unit 307 may provide communications through the use of either or both physical and wireless communications links.Program 150 may be downloaded topersistent storage 305 throughcommunications unit 307. - I/O interface(s) 306 allows for input and output of data with other devices that may be connected, respectively, to
computing device 110 andserver computer 120. For example, I/O interface(s) 306 may provide a connection to external device(s) 308, such as a keyboard, a keypad, a touch screen, and/or some other suitable input device.External devices 308 can also include portable computer readable storage media such as, for example, thumb drives, portable optical or magnetic disks, and memory cards. Software and data used to practice embodiments of the present invention, e.g.,program 150, can be stored on such portable computer readable storage media and can be loaded ontopersistent storage 305 via I/O interface(s) 306. I/O interface(s) 306 also connect to adisplay 309. -
Display 309 provides a mechanism to display data to a user and may be, for example, a computer monitor. - The programs described herein are identified based upon the application for which they are implemented in a specific embodiment of the invention. However, it should be appreciated that any particular program nomenclature herein is used merely for convenience, and thus the invention should not be limited to use solely in any specific application identified and/or implied by such nomenclature.
- The present invention may be a system, a method, and/or a computer program product. The computer program product may include a computer readable storage medium (or media) having computer readable program instructions thereon for causing a processor to carry out aspects of the present invention.
- The computer readable storage medium can be a tangible device that can retain and store instructions for use by an instruction execution device. The computer readable storage medium may be, for example, but is not limited to, an electronic storage device, a magnetic storage device, an optical storage device, an electromagnetic storage device, a semiconductor storage device, or any suitable combination of the foregoing. A non-exhaustive list of more specific examples of the computer readable storage medium includes the following: a portable computer diskette, a hard disk, a random access memory (RAM), a read-only memory (ROM), an erasable programmable read-only memory (EPROM or Flash memory), a static random access memory (SRAM), a portable compact disc read-only memory (CD-ROM), a digital versatile disk (DVD), a memory stick, a floppy disk, a mechanically encoded device such as punch-cards or raised structures in a groove having instructions recorded thereon, and any suitable combination of the foregoing. A computer readable storage medium, as used herein, is not to be construed as being transitory signals per se, such as radio waves or other freely propagating electromagnetic waves, electromagnetic waves propagating through a waveguide or other transmission media (e.g., light pulses passing through a fiber-optic cable), or electrical signals transmitted through a wire.
- Computer readable program instructions described herein can be downloaded to respective computing/processing devices from a computer readable storage medium or to an external computer or external storage device via a network, for example, the Internet, a local area network, a wide area network and/or a wireless network. The network may comprise copper transmission cables, optical transmission fibers, wireless transmission, routers, firewalls, switches, gateway computers and/or edge servers. A network adapter card or network interface in each computing/processing device receives computer readable program instructions from the network and forwards the computer readable program instructions for storage in a computer readable storage medium within the respective computing/processing device.
- Computer readable program instructions for carrying out operations of the present invention may be assembler instructions, instruction-set-architecture (ISA) instructions, machine instructions, machine dependent instructions, microcode, firmware instructions, state-setting data, or either source code or object code written in any combination of one or more programming languages, including an object oriented programming language such as Smalltalk, C++ or the like, conventional procedural programming languages, such as the “C” programming language or similar programming languages, and quantum programming languages such as the “Q” programming language, Q#, quantum computation language (QCL) or similar programming languages, low-level programming languages, such as the assembly language or similar programming languages. The computer readable program instructions may execute entirely on the user's computer, partly on the user's computer, as a stand-alone software package, partly on the user's computer and partly on a remote computer or entirely on the remote computer or server. In the latter scenario, the remote computer may be connected to the user's computer through any type of network, including a local area network (LAN) or a wide area network (WAN), or the connection may be made to an external computer (for example, through the Internet using an Internet Service Provider). In some embodiments, electronic circuitry including, for example, programmable logic circuitry, field-programmable gate arrays (FPGA), or programmable logic arrays (PLA) may execute the computer readable program instructions by utilizing state information of the computer readable program instructions to personalize the electronic circuitry, in order to perform aspects of the present invention.
- Aspects of the present invention are described herein with reference to flowchart illustrations and/or block diagrams of methods, apparatus (systems), and computer program products according to embodiments of the invention. It will be understood that each block of the flowchart illustrations and/or block diagrams, and combinations of blocks in the flowchart illustrations and/or block diagrams, can be implemented by computer readable program instructions.
- These computer readable program instructions may be provided to a processor of a general purpose computer, special purpose computer, or other programmable data processing apparatus to produce a machine, such that the instructions, which execute via the processor of the computer or other programmable data processing apparatus, create means for implementing the functions/acts specified in the flowchart and/or block diagram block or blocks. These computer readable program instructions may also be stored in a computer readable storage medium that can direct a computer, a programmable data processing apparatus, and/or other devices to function in a particular manner, such that the computer readable storage medium having instructions stored therein comprises an article of manufacture including instructions which implement aspects of the function/act specified in the flowchart and/or block diagram block or blocks.
- The computer readable program instructions may also be loaded onto a computer, other programmable data processing apparatus, or other device to cause a series of operational steps to be performed on the computer, other programmable apparatus or other device to produce a computer implemented process, such that the instructions which execute on the computer, other programmable apparatus, or other device implement the functions/acts specified in the flowchart and/or block diagram block or blocks.
- The flowchart and block diagrams in the Figures (i.e., FIG.) illustrate the architecture, functionality, and operation of possible implementations of systems, methods, and computer program products according to various embodiments of the present invention. In this regard, each block in the flowchart or block diagrams may represent a module, segment, or portion of instructions, which comprises one or more executable instructions for implementing the specified logical function(s). In some alternative implementations, the functions noted in the block may occur out of the order noted in the figures. For example, two blocks shown in succession may, in fact, be executed substantially concurrently, or the blocks may sometimes be executed in the reverse order, depending upon the functionality involved. It will also be noted that each block of the block diagrams and/or flowchart illustration, and combinations of blocks in the block diagrams and/or flowchart illustration, can be implemented by special purpose hardware-based systems that perform the specified functions or acts or carry out combinations of special purpose hardware and computer instructions.
- The descriptions of the various embodiments of the present invention have been presented for purposes of illustration but are not intended to be exhaustive or limited to the embodiments disclosed. Many modifications and variations will be apparent to those of ordinary skill in the art without departing from the scope and spirit of the invention. The terminology used herein was chosen to best explain the principles of the embodiment, the practical application or technical improvement over technologies found in the marketplace, or to enable others of ordinary skill in the art to understand the embodiments disclosed herein.
Claims (20)
Priority Applications (1)
Application Number | Priority Date | Filing Date | Title |
---|---|---|---|
US16/789,782 US11243758B2 (en) | 2020-02-13 | 2020-02-13 | Cognitively determining updates for container based solutions |
Applications Claiming Priority (1)
Application Number | Priority Date | Filing Date | Title |
---|---|---|---|
US16/789,782 US11243758B2 (en) | 2020-02-13 | 2020-02-13 | Cognitively determining updates for container based solutions |
Publications (2)
Publication Number | Publication Date |
---|---|
US20210255846A1 true US20210255846A1 (en) | 2021-08-19 |
US11243758B2 US11243758B2 (en) | 2022-02-08 |
Family
ID=77272812
Family Applications (1)
Application Number | Title | Priority Date | Filing Date |
---|---|---|---|
US16/789,782 Active US11243758B2 (en) | 2020-02-13 | 2020-02-13 | Cognitively determining updates for container based solutions |
Country Status (1)
Country | Link |
---|---|
US (1) | US11243758B2 (en) |
Cited By (18)
Publication number | Priority date | Publication date | Assignee | Title |
---|---|---|---|---|
US20210286640A1 (en) * | 2020-03-13 | 2021-09-16 | Sap Se | Integration and development cycles by swapping running executables in cloud-native environments |
CN114356366A (en) * | 2021-12-20 | 2022-04-15 | 绿盟科技集团股份有限公司 | Sandbox engine updating method, device, equipment and medium of virtual machine |
US20220138070A1 (en) * | 2020-10-30 | 2022-05-05 | Nutanix, Inc. | User interface and health status monitoring for a multi service domain system |
US20230036739A1 (en) * | 2021-07-28 | 2023-02-02 | Red Hat, Inc. | Secure container image builds |
US20230044016A1 (en) * | 2021-08-03 | 2023-02-09 | Vertiv It Systems, Inc. | System and method for service management and container orchestration within a host environment |
US11635990B2 (en) | 2019-07-01 | 2023-04-25 | Nutanix, Inc. | Scalable centralized manager including examples of data pipeline deployment to an edge system |
US11645188B1 (en) | 2021-11-16 | 2023-05-09 | International Business Machines Corporation | Pull request risk prediction for bug-introducing changes |
US11665221B2 (en) | 2020-11-13 | 2023-05-30 | Nutanix, Inc. | Common services model for multi-cloud platform |
US11726764B2 (en) | 2020-11-11 | 2023-08-15 | Nutanix, Inc. | Upgrade systems for service domains |
US11736585B2 (en) | 2021-02-26 | 2023-08-22 | Nutanix, Inc. | Generic proxy endpoints using protocol tunnels including life cycle management and examples for distributed cloud native services and applications |
EP4258106A1 (en) * | 2022-04-06 | 2023-10-11 | Red Hat, Inc. | Rebasing image layers utilising a repository-based strategy |
US11836484B1 (en) * | 2022-08-31 | 2023-12-05 | Confluent, Inc. | Docker image registry synchronization service |
US20240061667A1 (en) * | 2022-08-22 | 2024-02-22 | Bank Of America Corporation | Incremental Image Import Process for Supporting Multiple Upstream Image Repositories |
US20240160354A1 (en) * | 2022-11-15 | 2024-05-16 | Salesforce, Inc. | Node cache migration |
US12155731B2 (en) | 2019-10-09 | 2024-11-26 | Nutanix, Inc. | Platform-as-a-service deployment including service domains |
US12159178B2 (en) | 2019-07-03 | 2024-12-03 | Nutanix, Inc. | Apparatus and method for deploying a mobile device as a data source |
US12219032B2 (en) | 2019-07-03 | 2025-02-04 | Nutanix, Inc. | Apparatuses and methods for edge computing application deployment |
US12288053B2 (en) | 2022-03-31 | 2025-04-29 | International Business Machines Corporation | Automatic container specification file creation and update for a codebase |
Families Citing this family (1)
Publication number | Priority date | Publication date | Assignee | Title |
---|---|---|---|---|
WO2022046177A1 (en) * | 2020-08-28 | 2022-03-03 | Arris Enterprises Llc | Packaging system for deploying computer software |
Family Cites Families (15)
Publication number | Priority date | Publication date | Assignee | Title |
---|---|---|---|---|
US8892878B2 (en) * | 2003-05-09 | 2014-11-18 | Oracle America, Inc. | Fine-grained privileges in operating system partitions |
US9027151B2 (en) * | 2011-02-17 | 2015-05-05 | Red Hat, Inc. | Inhibiting denial-of-service attacks using group controls |
US9582268B2 (en) * | 2015-05-27 | 2017-02-28 | Runnable Inc. | Automatic communications graphing for a source application |
US10185638B2 (en) * | 2015-09-29 | 2019-01-22 | NeuVector, Inc. | Creating additional security containers for transparent network security for application containers based on conditions |
CN106227579B (en) | 2016-07-12 | 2020-01-31 | 深圳市中润四方信息技术有限公司 | Docker container construction method and Docker management console |
CN106528224B (en) | 2016-11-03 | 2020-08-04 | 腾讯科技(深圳)有限公司 | Content updating method, server and system for Docker container |
CN106412126A (en) | 2016-12-05 | 2017-02-15 | 深圳中兴网信科技有限公司 | Docker image description information display method and display device |
US10244034B2 (en) * | 2017-03-29 | 2019-03-26 | Ca, Inc. | Introspection driven monitoring of multi-container applications |
CN107294772B (en) | 2017-05-23 | 2020-09-01 | 中电万维信息技术有限责任公司 | Dynamic management monitoring service system combined with Docker |
CN107704252A (en) | 2017-10-20 | 2018-02-16 | 北京百悟科技有限公司 | A kind of method and system for providing a user artificial intelligence platform |
US10324708B2 (en) * | 2017-11-14 | 2019-06-18 | Red Hat, Inc. | Managing updates to container images |
US11023529B2 (en) * | 2018-01-04 | 2021-06-01 | Red Hat, Inc. | System and method for generating container image suggestions |
US20200097662A1 (en) * | 2018-09-25 | 2020-03-26 | Ca, Inc. | Combined threat score for container images |
US10860364B2 (en) * | 2019-01-23 | 2020-12-08 | Vmware, Inc. | Containerized management services with high availability |
US11061806B2 (en) * | 2019-08-23 | 2021-07-13 | Bank Of America Corporation | Self-correcting dependent software upgrades |
-
2020
- 2020-02-13 US US16/789,782 patent/US11243758B2/en active Active
Cited By (25)
Publication number | Priority date | Publication date | Assignee | Title |
---|---|---|---|---|
US11635990B2 (en) | 2019-07-01 | 2023-04-25 | Nutanix, Inc. | Scalable centralized manager including examples of data pipeline deployment to an edge system |
US12026551B2 (en) | 2019-07-01 | 2024-07-02 | Nutanix, Inc. | Communication and synchronization with edge systems |
US12219032B2 (en) | 2019-07-03 | 2025-02-04 | Nutanix, Inc. | Apparatuses and methods for edge computing application deployment |
US12159178B2 (en) | 2019-07-03 | 2024-12-03 | Nutanix, Inc. | Apparatus and method for deploying a mobile device as a data source |
US12155731B2 (en) | 2019-10-09 | 2024-11-26 | Nutanix, Inc. | Platform-as-a-service deployment including service domains |
US11669357B2 (en) * | 2020-03-13 | 2023-06-06 | Sap Se | Integration and development cycles by swapping running executables in cloud-native environments |
US20210286640A1 (en) * | 2020-03-13 | 2021-09-16 | Sap Se | Integration and development cycles by swapping running executables in cloud-native environments |
US20220138070A1 (en) * | 2020-10-30 | 2022-05-05 | Nutanix, Inc. | User interface and health status monitoring for a multi service domain system |
US11726764B2 (en) | 2020-11-11 | 2023-08-15 | Nutanix, Inc. | Upgrade systems for service domains |
US11665221B2 (en) | 2020-11-13 | 2023-05-30 | Nutanix, Inc. | Common services model for multi-cloud platform |
US12021915B2 (en) | 2020-11-13 | 2024-06-25 | Nutanix, Inc. | Common services model for multi-cloud platform |
US11736585B2 (en) | 2021-02-26 | 2023-08-22 | Nutanix, Inc. | Generic proxy endpoints using protocol tunnels including life cycle management and examples for distributed cloud native services and applications |
US20230036739A1 (en) * | 2021-07-28 | 2023-02-02 | Red Hat, Inc. | Secure container image builds |
US12086262B2 (en) * | 2021-07-28 | 2024-09-10 | Red Hat, Inc. | Secure container image builds |
US20230044016A1 (en) * | 2021-08-03 | 2023-02-09 | Vertiv It Systems, Inc. | System and method for service management and container orchestration within a host environment |
US11645188B1 (en) | 2021-11-16 | 2023-05-09 | International Business Machines Corporation | Pull request risk prediction for bug-introducing changes |
WO2023087977A1 (en) * | 2021-11-16 | 2023-05-25 | International Business Machines Corporation | Pull request risk prediction for bug-introducing changes |
CN114356366A (en) * | 2021-12-20 | 2022-04-15 | 绿盟科技集团股份有限公司 | Sandbox engine updating method, device, equipment and medium of virtual machine |
US12288053B2 (en) | 2022-03-31 | 2025-04-29 | International Business Machines Corporation | Automatic container specification file creation and update for a codebase |
US12020016B2 (en) | 2022-04-06 | 2024-06-25 | Red Hat, Inc. | Rebasing image layers utilising a repository-based strategy |
EP4258106A1 (en) * | 2022-04-06 | 2023-10-11 | Red Hat, Inc. | Rebasing image layers utilising a repository-based strategy |
US20240061667A1 (en) * | 2022-08-22 | 2024-02-22 | Bank Of America Corporation | Incremental Image Import Process for Supporting Multiple Upstream Image Repositories |
US11836484B1 (en) * | 2022-08-31 | 2023-12-05 | Confluent, Inc. | Docker image registry synchronization service |
US12217049B2 (en) | 2022-08-31 | 2025-02-04 | Confluent, Inc. | Docker image registry synchronization service |
US20240160354A1 (en) * | 2022-11-15 | 2024-05-16 | Salesforce, Inc. | Node cache migration |
Also Published As
Publication number | Publication date |
---|---|
US11243758B2 (en) | 2022-02-08 |
Similar Documents
Publication | Publication Date | Title |
---|---|---|
US11243758B2 (en) | Cognitively determining updates for container based solutions | |
US12086624B2 (en) | Live recovery of virtual machines in a public cloud computing environment based on temporary live mount | |
US11611479B2 (en) | Migration of existing computing systems to cloud computing sites or virtual machines | |
US11924034B2 (en) | Migration of an existing computing system to new hardware | |
US11645245B2 (en) | Container software discovery and cataloging | |
US8543641B2 (en) | Method and system of application delivery through application template to client device | |
US9451023B2 (en) | Information management of virtual machines having mapped storage devices | |
US11314546B2 (en) | Method and system for executing a containerized stateful application on a stateless computing platform using machine learning | |
US11099882B2 (en) | Container optimization through automatic layer suggestions | |
US20170124103A1 (en) | Method and Apparatus for Creating System Disk Snapshot of Virtual Machine | |
US20200050769A1 (en) | Selecting data storage based on data and storage classifications | |
US11775475B2 (en) | Deferred path resolution during container deployment | |
US20200150950A1 (en) | Upgrade managers for differential upgrade of distributed computing systems | |
US10296318B2 (en) | Offline tools upgrade for virtual machines | |
JP2023517564A (en) | Predictive provisioning methods, systems and programs for remote files | |
US20220011938A1 (en) | System and method for selectively restoring data | |
US20200358874A1 (en) | Persisting user configuration settings on write filter enabled devices | |
US10365907B2 (en) | Offline tools installation for virtual machines | |
US20240202332A1 (en) | System and Method for Ransomware Scan Using Incremental Data Blocks | |
US20170336979A1 (en) | Identifying pages in a migration management system |
Legal Events
Date | Code | Title | Description |
---|---|---|---|
AS | Assignment |
Owner name: INTERNATIONAL BUSINESS MACHINES CORPORATION, NEW YORK Free format text: ASSIGNMENT OF ASSIGNORS INTEREST;ASSIGNORS:MAMGAIN, PARAS;DARBHA, VENKATA KIRAN KUMAR;REEL/FRAME:051810/0814 Effective date: 20200205 |
|
FEPP | Fee payment procedure |
Free format text: ENTITY STATUS SET TO UNDISCOUNTED (ORIGINAL EVENT CODE: BIG.); ENTITY STATUS OF PATENT OWNER: LARGE ENTITY |
|
STPP | Information on status: patent application and granting procedure in general |
Free format text: NON FINAL ACTION MAILED |
|
STPP | Information on status: patent application and granting procedure in general |
Free format text: RESPONSE TO NON-FINAL OFFICE ACTION ENTERED AND FORWARDED TO EXAMINER |
|
STPP | Information on status: patent application and granting procedure in general |
Free format text: NOTICE OF ALLOWANCE MAILED -- APPLICATION RECEIVED IN OFFICE OF PUBLICATIONS |
|
STPP | Information on status: patent application and granting procedure in general |
Free format text: PUBLICATIONS -- ISSUE FEE PAYMENT RECEIVED |
|
STPP | Information on status: patent application and granting procedure in general |
Free format text: PUBLICATIONS -- ISSUE FEE PAYMENT VERIFIED |
|
STCF | Information on status: patent grant |
Free format text: PATENTED CASE |