Class SkaffoldSyncParameters


  • public class SkaffoldSyncParameters
    extends java.lang.Object
    Skaffold specific JibExtension parameters for configuring files to sync.
    • Constructor Summary

      Constructors 
      Constructor Description
      SkaffoldSyncParameters​(org.gradle.api.Project project)  
    • Method Summary

      All Methods Instance Methods Concrete Methods 
      Modifier and Type Method Description
      java.util.Set<java.nio.file.Path> getExcludes()
      Get the excludes directive for sync functionality in skaffold.
      void setExcludes​(java.lang.Object paths)
      Sets excludes.
      • Methods inherited from class java.lang.Object

        clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
    • Constructor Detail

      • SkaffoldSyncParameters

        @Inject
        public SkaffoldSyncParameters​(org.gradle.api.Project project)
    • Method Detail

      • getExcludes

        @Internal
        public java.util.Set<java.nio.file.Path> getExcludes()
        Get the excludes directive for sync functionality in skaffold.
        Returns:
        a set of absolute paths
      • setExcludes

        public void setExcludes​(java.lang.Object paths)
        Sets excludes. excludes can be any suitable object describing file paths convertible by Project.files(java.lang.Object...) (such as File, List<File>, or List<String>).
        Parameters:
        paths - paths to set on excludes